alphacyberranger to Programmer [email protected] • 1 year agoI'll just sort it myselfsh.itjust.worksimagemessage-square43fedilinkarrow-up1929arrow-down112
arrow-up1917arrow-down1imageI'll just sort it myselfsh.itjust.worksalphacyberranger to Programmer [email protected] • 1 year agomessage-square43fedilink
minus-square@Armand1link4•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@[email protected]linkfedilink5•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