Answers for "how to use sort function in javascript for ascending order"

3

sort js

numArray.sort((a, b) => a - b); // For ascending sort
numArray.sort((a, b) => b - a); // For descending sort
Posted by: Guest on October-20-2020

Code answers related to "how to use sort function in javascript for ascending order"

Browse Popular Code Answers by Language