quick question. Does the .sort method in javascript automatically sort items in an array using ASCII order. I've looked at examples etc but haven't seen a definitive answer anywhere. Also what alternative ways of alphabetically sorting an array is there?
Thanks in advance
quick question. Does the .sort method in javascript automatically sort items in an array using ASCII order. I've looked at examples etc but haven't seen a definitive answer anywhere. Also what alternative ways of alphabetically sorting an array is there?
Thanks in advance
Share Improve this question edited Feb 12, 2017 at 4:49 yshavit 43.5k8 gold badges89 silver badges127 bronze badges asked Feb 12, 2017 at 4:21 sh.learnersh.learner 632 silver badges11 bronze badges 2-
1
What about just making a small script to test that? Something like
["D", "C", "B", "A"].sort();
? It sorts by: "If omitted, the array is sorted according to each character's Unicode code point value". – Spencer Wieczorek Commented Feb 12, 2017 at 4:25 - 1 you can read this. developer.mozilla/en/docs/Web/JavaScript/Reference/… – Aamerallous Commented Feb 12, 2017 at 4:30
2 Answers
Reset to default 8Yes. If you look at the .sort()
method on MDN it states the case when the pare function parameter is omitted:
Specifies a function that defines the sort order. If omitted, the array is sorted according to each character's Unicode code point value, according to the string conversion of each element.
Since Unicode is a super set of ASCII then yes it does sort in ASCII order.
Unless you are using "ASCII" like "Kleenex" (vs facial tissue), no, nothing in JavaScript is ASCII. In particular, strings are counted sequences of UTF-16 code units, one or two of which encode a Unicode codepoint. (This applies to Java, .NET, JavaScript, HTML, XML,….)
A lexicographic ordering is not very useful for human-valued text. Since you ask about alphabetically sorting, you must have a particular language's writing system's alphabet in mind. So, perhaps you want to pass localeCompare
to sort
.