Skip to content

Instantly share code, notes, and snippets.

@djom202
Created September 11, 2018 16:47
Show Gist options
  • Save djom202/2f6244e082e7e9b537b9e13ab6446b1f to your computer and use it in GitHub Desktop.
Save djom202/2f6244e082e7e9b537b9e13ab6446b1f to your computer and use it in GitHub Desktop.
Sort numeric array
function sortArr(arr){
return arr.sort(function (a, b){
return a - b;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment