首页 > 代码库 > Number 和 parseInt 区别
Number 和 parseInt 区别
把字符串 转换成 数字的时候, Number 有点不靠谱, 因为会对 ‘‘ 和 null 转换成0, parseInt 相对靠谱些;
判断是否是数值时, isNaN 对于字符串‘2‘的判断是数字, 对 null 和 ‘‘ 也是数字, 所以也是不靠谱;
另外注意 typeof NaN 为 ‘number‘, 说明 typeof 判断数字也是不靠谱。
Number(‘‘); // 0
Number(null); // 0
Number(undefined); //NaN
parseInt(‘‘); // NaN
parseInt(null); // NaN
parseInt(undefined); // NaN
isNaN(2); // false
isNaN(‘2‘); // false
isNaN(null); // false, 由于 Number(null) -> 0
isNaN(‘‘); // false, 由于 Number(‘‘) -> 0
isNaN(undefined); // true
isNaN(NaN); // true
typeof NaN; // ‘number‘
Number 和 parseInt 区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。