码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2021-01-14 10:34:36      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:int   ber   class   dfa   保留   字符   null   def   false   

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 .空字符 '' 转换结果

标签:int   ber   class   dfa   保留   字符   null   def   false   

原文地址:https://www.cnblogs.com/smallyi/p/14268574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!