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

Programmer Humor

19197 readers
914 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
[โ€“] [email protected] 4 points 1 year ago (3 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;
});
[โ€“] [email protected] 5 points 1 year ago

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

load more comments (2 replies)