• Konlanx@feddit.de
    link
    fedilink
    arrow-up
    48
    ·
    edit-2
    1 year ago

    It’s not. The default sorter does that, because that way it can sort pretty much anything without breaking at runtime. You can overwrite it easily, though. For the example above you could simply do it like this:

    [3, 1, 10].sort((a, b) => a - b)

    Returns: [1, 3, 10]