Abinav Seelan takes a deep dive to unearth why exactly this happens in JavaScript:
null > 0; // false
null == 0; // false
null >= 0; // true
How can a value not be greater than
0
, not be equal to0
, but be greater than and equal to0
?
A rather geeky/technical weblog, est. 2001, by Bramus
null >= 0
`Abinav Seelan takes a deep dive to unearth why exactly this happens in JavaScript:
null > 0; // false
null == 0; // false
null >= 0; // true
How can a value not be greater than
0
, not be equal to0
, but be greater than and equal to0
?