this post was submitted on 21 Jul 2023
81 points (96.6% liked)

Programming Humor

2662 readers
2 users here now

Related Communities !programmerhumor@lemmy.ml !programmer_humor@programming.dev !programmerhumor@kbin.social !programming_horror@programming.dev

Other Programming Communities !programming@beehaw.org !programming@programming.dev !programming@lemmy.ml !programming@kbin.social !learn_programming@programming.dev !functional_programming@programming.dev !embedded_prog@lemmy.ml

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] poopsmith@lemmy.world 18 points 1 year ago (1 children)

From MDN:

If compareFn is not supplied, all non-undefined array elements are sorted by converting them to strings and comparing strings in UTF-16 code units order.

So, if you're trying to sort numbers, [6, -2, 2, -7].sort((a, b) => a - b)

[โ€“] Solumbran@lemmy.world 4 points 1 year ago

That might be explainable, but doesn't make it logical or acceptable.