how to sort an array in javascript according to id code example
Example 1: sorting of arraray's number element in javascript
let numbers = [0, 1, 2, 3, 10, 20, 30];
numbers.sort((a, b) => a - b);
console.log(numbers);
Example 2: javascript sort function
var points = [40, 100, 1, 5, 25, 10];
points.sort((a,b) => a-b)