var num=parseInt(null/undefind);
console.log(num);//出来的是NAN
parseInt(‘4a‘)//4
parseInt(‘4.5‘)//4
parseInt(‘a4‘)//NaN
var num1=Number(null)
console.log(num1);//0;
console.log(Number(‘4.5‘);//4.5
parseInt是将一个字符串的数据转为整形 转换规则:如果要转的数据是字符串,从开头开始查找数字,遇到小数点或者非数字,则返回前边的数字,否则开头不是数字返回NaN;如果是布尔型、未定义型、空、返回NaN;
原文地址:https://www.cnblogs.com/smying/p/11032175.html
时间: 2024-10-09 17:36:42