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('21a')
NaN

Number轉換字符串直接比較大小
Number('1.2') > 1
true
Number('21a') > 1
false
Number('a21a') > 0
false

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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM