When using NodeJS, I noticed:
null >= 0 // true null > 0 // false null == 0 // false
Is this expected behavior?