alphacyberranger to Programmer Humor@programming.dev • 1 year agoI'll just sort it myselfsh.itjust.worksimagemessage-square48fedilinkarrow-up1927
arrow-up1927imageI'll just sort it myselfsh.itjust.worksalphacyberranger to Programmer Humor@programming.dev • 1 year agomessage-square48fedilink
minus-square@Armand1@lemmy.worldlinkfedilink8•1 year agoAs 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; });
minus-square@smik@discuss.tchncs.delinkfedilink5•1 year agoStuff like that exists to remind us of the Java in JavaScript
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; });
arr.sort((a, b) => a - b);
One hundred percent how I do it everytime.
Stuff like that exists to remind us of the Java in JavaScript