Answers for "how to sort in descending order javascript"

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

Code answers related to "how to sort in descending order javascript"

Browse Popular Code Answers by Language