Skip to content

Instantly share code, notes, and snippets.

@01GOD
Last active November 24, 2016 07:42
Show Gist options
  • Save 01GOD/177bcad112ac210d14ae5f8d1a2d37e8 to your computer and use it in GitHub Desktop.
Save 01GOD/177bcad112ac210d14ae5f8d1a2d37e8 to your computer and use it in GitHub Desktop.
My Javascript Bubble Sort
var bubblesort = function(array) {
for (o = 0; o < array.length - 1; o++) {
console.log(o);
for (i = 0; i < array.length - 1; i++) {
console.log(i);
if (array[i] > array[i + 1]) {
var temp = array[i];
array[i] = array[i + 1];
array[i + 1] = temp;
console.log(array);
}
}
}
return array
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment