Using Node.js, I\'m evaluating the expression:
0 < Number.MIN_VALUE
To my surprise, this returns true. Why is that? And: Ho
true
Since Number.MIN_VALUE = 5e-324 = 5 x 10^-324 and it's greater than 0(a little bit greater). Read more here.
Number.MIN_VALUE = 5e-324 = 5 x 10^-324
0