OverSoft :verified: · @OverSoft
397 followers · 108 posts · Server infosec.exchange

Javascript is so sucky sometimes.

const array1 = [1, 30, 4, 21, 100000];
array1.sort();
console.log(array1);
// output: Array [1, 100000, 21, 30, 4]

const array2 = [1, 30, 4, 21, 100000];
array2.sort((a,b)=>a-b);
console.log(array2);
// output: Array [1, 4, 21, 30, 100000]

I know that by default it sorts alphabetically, but WHY?! I'M GIVING YOU NUMBERS, SORT NUMERICALLY!

#javascript #JavaScriptShit #makesnosense

Last updated 3 years ago

🤍 Gray 🖤 · @Graycot
605 followers · 3798 posts · Server fosstodon.org

JavaScript madness, implementing C in JavaScript in the Browser.

youtu.be/6_C9h1dPp54

#js #javascript #JavaScriptShit #webdev

Last updated 3 years ago