标签: javascript
var suffix = "M"; console.log(Number(suffix)); if(Number(suffix) !== NaN) { console.log("this should not be printed");}
if条件应该返回false,但它返回true。为什么呢?