Skip to content

Instantly share code, notes, and snippets.

@alibalbars
Created July 24, 2021 19:45
Show Gist options
  • Save alibalbars/dfc4a1a96c6553e4b8e4f8928446c734 to your computer and use it in GitHub Desktop.
Save alibalbars/dfc4a1a96c6553e4b8e4f8928446c734 to your computer and use it in GitHub Desktop.
Sorting string elements with JavaScript
const months = ['March', 'Jan', 'Feb', 'Dec'];
months.sort();
console.log(months);
// expected output: Array ["Dec", "Feb", "Jan", "March"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment