Answers for "sort an array by size"

3

sort array by string length javascript

function sortByLength(arr) {
   return arr.sort((x,y) => x.length - y.length);
}
Posted by: Guest on August-17-2020

Code answers related to "sort an array by size"

Code answers related to "Javascript"

Browse Popular Code Answers by Language