Answers for "how to sort numbers in acsending order in javascript"

1

javascript sort numbers

var numArray = [140000, 104, 99];

numArray.sort(function(a, b) {
  return a - b;
});

// Array(3) [ 99, 104, 140000 ]
Posted by: Guest on January-27-2021
0

Sort numbers in javascript

[0,10,4,9,123,54,1].sort((a,b) => a-b);>>> [0, 1, 4, 9, 10, 54, 123]
Posted by: Guest on August-26-2021

Code answers related to "how to sort numbers in acsending order in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language