Skip to content

Instantly share code, notes, and snippets.

@ericcornelissen
ericcornelissen / array-string-sort.js
Last active January 28, 2019 20:03
JavaScript Array prototype method to sort strings containing numbers correctly
/**
* Sort an array of string alpha-numerically.
*
* @example
* // returns ['1', '2', '10', '20'] rather then ['1', '10', '2', '20']
* ['1', '20', '10', '2'].strSort();
*
* @return {array} The alpha-numerically sorted array.
* @license The-Unlicense
*/