Skip to content

Instantly share code, notes, and snippets.

@SafaElmali
Last active May 10, 2019 20:12
Show Gist options
  • Save SafaElmali/043fdd115901200867202456759fc90d to your computer and use it in GitHub Desktop.
Save SafaElmali/043fdd115901200867202456759fc90d to your computer and use it in GitHub Desktop.
Sorting Algorithm
//Sorting Algorithm
function sortArray(arr) {
let temp;
for (let i = 0; i < arr.length; i++) {
if (arr[i] > arr[i + 1]) {
temp = arr[i];
arr[i] = arr[i + 1];
arr[i + 1] = temp;
console.log(arr);
return sortArray(arr);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment