标签: javascript comparison-operators
使用NodeJS时,我注意到:
null >= 0 // true null > 0 // false null == 0 // false
这是预期的行为吗?