sorts the string by the last characterjavaScript code example
Example: 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));
}
function last(arr){
return arr.sort((a, b) => a.charCodeAt(a.length - 1) - b.charCodeAt(b.length - 1));
}