标签:style blog color io ar java strong 数据 sp
1. null 与 undefined
1 alert(null == undefined); // true; 2 alert(null === undefined); // flase;
如果定义的变量将来用于保存变量,那么最好将该变量初始化为null, 即null相当一个变量占位符。
2. Boolean布尔值类型值的转换
1 var a = 1; 2 var b = Boolean(a); 3 alert(b); //true
布尔值类型转换
数据类型 | 转换为true的值 | 转换为flase的值 |
Boolear | true | false |
String | 任何非空字符串 | ""(空字符串) |
Number | 任何非零数字值(包括无穷大) | 0和Nan |
Object | 任何对象 | null |
Undefined | undefined |
3. Number数值类型
标签:style blog color io ar java strong 数据 sp
原文地址:http://www.cnblogs.com/tuoyuan/p/4000629.html