标签:date fine block ble 字符 span als lis focus
var a = Symbol(‘abc‘); var b = Symbol(‘abc‘); console.log(a==b); =>false
Number(字符串)
Number(‘13‘); ->13 Number(‘13px‘); ->NaN //遇到非有效数字结果为NaN Number(‘13.5‘); ->13.5 //可以识别小数
Number(布尔)
Number(true); //->1 Number(false); //->0
Number(null和undefined)
Number(null); //->0 Number(undefined); //->NaN
Number(引用类型):先把引用值调取toString转换为字符串,然后再Number该字符串转换为数字.
parseInt和parseFloat
parseInt(‘13.5px‘); //=>13
parseFloat(‘13.5px‘); //=>13.5
parseInt(‘px123‘);//NaN
规律:转换为false的只有0/NaN/空字符串/null/undefined,其余为true。
标签:date fine block ble 字符 span als lis focus
原文地址:https://www.cnblogs.com/wangshouren/p/11615818.html