Answers for "how to sort more than 3 values in descending js"

25

ascending and descending val in array using js

numArray.sort((a, b) => a - b); // For ascending sort
numArray.sort((a, b) => b - a); // For descending sort
Posted by: Guest on May-08-2021
0

typescript sort number array descending

values.sort((one, two) => (one > two ? -1 : 1));
Posted by: Guest on February-24-2021

Code answers related to "how to sort more than 3 values in descending js"

Browse Popular Code Answers by Language