top | item 25565573

(no title)

Franciscouzo | 5 years ago

You can actually do it (I'm not saying it's a good idea), there's a way to differentiate between -0 and 0:

    > Object.is(0, -0)
    false

discuss

order

gizmo686|5 years ago

I was going to make a comment about this not working for integer types; but then I remembered that JavaScript doesn't have integers, so I guess it technically works.