914
I'll just sort it myself (sh.itjust.works)
you are viewing a single comment's thread
view the rest of the comments
[-] Armand1@lemmy.world 4 points 1 year ago

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@lemmy.world 37 points 1 year ago
[-] SpyingEnvy@lemm.ee 2 points 1 year ago

One hundred percent how I do it everytime.

load more comments (1 replies)
this post was submitted on 05 Sep 2023
914 points (98.7% liked)

Programmer Humor

19208 readers
1141 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