对变量或值调用 typeof 运算符将返回下列值之一:
- undefined - 如果变量是 Undefined 类型的
- boolean - 如果变量是 Boolean 类型的
- number - 如果变量是 Number 类型的
- string - 如果变量是 String 类型的
- object - 如果变量是一种引用类型或 Null 类型的
注意:typeof(null)返回的是object;
还有:alert(null == undefined); //输出 "true"
值 undefined 实际上是从值 null 派生来的,因此 ECMAScript 把它们定义为相等的。
例:var exp = undefined;
if (exp == null)
{
alert("is null"); // 会弹出is null
}
接着再来一个栗子:
1、typeof([]); // "object"
2、typeof({}); //"object"
3、typeof([]) === typeof({}); // true
顺便:
1、{a:1}=={a:1} // false, 引用类型比较的是他们的地址