Number 和 parseInt 区别
Posted Hello World
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 区别的主要内容,如果未能解决你的问题,请参考以下文章
详解JS中Number()parseInt()和parseFloat()的区别