this post was submitted on 05 Sep 2023
914 points (98.7% liked)

Programmer Humor

18255 readers
723 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Armand1 4 points 10 months ago (2 children)

As annoying as this is, you are meant to use a comparer.

mapped.sort((a, b) => {
  if (a.value > b.value) {
    return 1;
  }
  if (a.value < b.value) {
    return -1;
  }
  return 0;
});
[–] minikieff 37 points 10 months ago (1 children)
[–] [email protected] 2 points 10 months ago

One hundred percent how I do it everytime.

[–] [email protected] 5 points 10 months ago

Stuff like that exists to remind us of the Java in JavaScript