• Seigest
    link
    fedilink
    English
    2311 months ago

    Didn’t belive it. tried it. died a little more inside.

  • Kevin
    link
    fedilink
    English
    1811 months ago

    From MDN:

    If compareFn is not supplied, all non-undefined array elements are sorted by converting them to strings and comparing strings in UTF-16 code units order.

    So, if you’re trying to sort numbers, [6, -2, 2, -7].sort((a, b) => a - b)

    • @skates
      link
      English
      511 months ago

      That’s a good point lol, I haven’t done a js interview yet but it’d probably be kinda rough trying to remember random shit like this.

    • @[email protected]
      link
      fedilink
      English
      -3
      edit-2
      11 months ago

      Meh, it’s a day 2 thing to understand how shitty JS deals with numbers. Good devs will cover their asses by default.