Skip to content

Instantly share code, notes, and snippets.

@corocoto
Created October 26, 2018 16:16
Show Gist options
  • Select an option

  • Save corocoto/6178df4b23654ee10d90509b4085ce48 to your computer and use it in GitHub Desktop.

Select an option

Save corocoto/6178df4b23654ee10d90509b4085ce48 to your computer and use it in GitHub Desktop.
Сортировка чисел по возрастанию
var numberArray=[60, 50, 62, 58, 54, 54];
numberArray.sort(compareNumbers);
console.log(numberArray);
function compareNumbers(num1, num2) {
return num1-num2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment