Answers for "how to print array in ascending order in javascript"

25

ascending 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 print array in ascending order in javascript"

Browse Popular Code Answers by Language