Library
easy
Sort names using localeCompare()
Given an array of person objects, sort them alphabetically by their last name using String.prototype.localeCompare().
easy
Sort Alphabets with localeCompare()
Create a function that sorts an array of strings in alphabetical order using String.prototype.localeCompare()
easy
Word sorting
Sort an array of words based on their alphabetical order using String.prototype.localeCompare() method.