JS - parseInt / Number 对 null. undefined .空字符 '' 转换结果

parseInt(‘‘)
NaN
parseInt(null)
NaN
parseInt(undefined)
NaN
parseInt(‘asdfa‘)
NaN
parseInt(‘123‘)
123
parseInt(‘asd12‘)
NaN
// 转换后只保留前面数字
parseInt(‘1213ewer‘) 
1213
parseInt(false)
NaN

Number(‘‘)
0
Number(null)
0
Number(false)
0
Number(undefined)
NaN


Number(-1)
-1
parseInt(-1)
-1

JS - parseInt / Number 对 null. undefined .空字符 '' 转换结果

上一篇:mssql sql server 其它系统函数 parsename 点语法字符串分割函数应用简介


下一篇:发送HTTP请求方法