Using Node.js, I\'m evaluating the expression:
0 < Number.MIN_VALUE
To my surprise, this returns true. Why is that? And: Ho
true
Use -Number.MAX_VALUE instead of Number.MIN_VALUE to compare:
-Number.MAX_VALUE
0 > -Number.MAX_VALUE returns true.
0 > -Number.MAX_VALUE