Answers for "sort the string by the last character js"

1

sort an array by the laster letter of element javascript

function last(arr){
    return arr.sort((a, b) => a.charCodeAt(a.length - 1) - b.charCodeAt(b.length - 1));
}
Posted by: Guest on October-15-2020
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 "sort the string by the last character js"

Browse Popular Code Answers by Language