sort values array js code example
Example 1: sort javascript array
var points = [40, 100, 1, 5, 25, 10];
points.sort((a,b) => a-b)
Example 2: sort numbers in array javascript
function sortNumber(a, b) {
return a - b;
}
Arr.sort(sortNumber);
var points = [40, 100, 1, 5, 25, 10];
points.sort((a,b) => a-b)
function sortNumber(a, b) {
return a - b;
}
Arr.sort(sortNumber);