I was just testing numbers in JavaScript when I noticed something weird occurring.
Why is Number.MIN_VALUE greater than 0? I expected it to be a very small negative value.
console.log(Number.MIN_VALUE > 0);
Is there some mathematics behind it, or is it a JavaScript precision error?