Skip to content

Instantly share code, notes, and snippets.

@tarzak
Last active August 29, 2015 14:28
Show Gist options
  • Save tarzak/9403d6339e40a8047995 to your computer and use it in GitHub Desktop.
Save tarzak/9403d6339e40a8047995 to your computer and use it in GitHub Desktop.
var arr = [5,3,2,1,4];
function bSort(arr) {
var i,j,temp;
for (i = 0; i < arr.length; i += 1) {
for (j = i + 1; j < arr.length; j += 1) {
if (arr[i] > arr[j]) {
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment