JavaScript typeof, null, 和 undefined
1.typeof 操作符
- 可以使用 typeof 操作符来检测变量的数据类型。
typeof "John"
typeof 3.14
typeof false
typeof [1,2,3,4]
typeof {name:'John', age:34}
- 在JavaScript中,数组是一种特殊的对象类型。 因此 typeof [1,2,3,4] 返回 object
2.null
- JavaScript 中 null 表示 “什么都没有”,null是一个只有一个值的特殊类型,表示一个空对象引用
- 用 typeof 检测 null 返回是object,你可以设置为 null 来清空对象:
var person = null;
var person = undefined;
3.undefined
- 在 JavaScript 中, undefined 是一个没有设置值的变量
var person;
- 任何变量都可以通过设置值为 undefined 来清空,类型为 undefined
person = undefined;
- undefined 和 null 的区别
null 和 undefined 的值相等,但类型不等
typeof undefined
typeof null
null === undefined
null == undefined
|