Answers for "how to sort array by value in javascript"

2

how to sort an array by value in javascript

//ascending order
arr.sort(function(a, b){return a-b});
arr.sort((a, b) => a - b);
//descending order 
arr.sort(function(a, b){return b - a});
arr.sort((a, b) => b - a);
Posted by: Guest on March-29-2021
3

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);
Posted by: Guest on April-17-2020
-1

javascript sort by id

elems.sort((a, b) => a.id - b.id);
Posted by: Guest on June-17-2020

Code answers related to "how to sort array by value in javascript"

Browse Popular Code Answers by Language