关于js类型转换
2021-01-26 11:14
标签:als 对比 字母 || style eof fine net amp 类型转换: parseInt(string,radix) perseFloat(string) toString((radix) null undefind不可以使用,报错 String(mix) Boolean() 隐藏类型转换 ++ -- 正(+) 负(-) * 减号 % =====》Number 加号 String && || >= 类型转换题 alert(typeof(a))==============>undefined alert(typeof(NaN))==========>number alert(typeof(null))============>object var a=‘123abc‘ alert(1==‘1‘)===========true var num=123123.3456789 关于js类型转换 标签:als 对比 字母 || style eof fine net amp 原文地址:https://www.cnblogs.com/lixintao/p/13230307.html
typeof返回的值的类型是String
显示类型转换
Number(mix)
isNaN() 判断是不是NaN,字母也是Nan Number(‘‘)与NaN对比
== !=
alert(typeof(typeof(a)))========string
alert(typeof(undefined))============>undefined
alert(typeof(‘undefined‘))============>string
alert(typeof(+a))==========number
alert(typeof(!!a))==========boolean
alert(typeof(a+‘‘))==========string
alert(NaN==NaN)======false
alert(Nan==undefined)========false
alert(‘11‘+11)===========1111
alert(1===‘1‘)===========false
alert(paseInet(‘123abc‘))======123
alert(num.toFixed(3))=======123123.346