Answers for "how to descending order value show in array using javascript"

54

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 descending order value show in array using javascript"

Browse Popular Code Answers by Language