码迷,mamicode.com
首页 > 其他好文 > 详细

2020.11.16 typeof null undefined

时间:2020-12-30 10:48:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:false   string   操作符   ===   val   bool   boolean   操作   als   

可以使用 typeof 操作符来检测变量的数据类型。

typeof "John"                // 返回 string
typeof 3.14                  // 返回 number
typeof false                 // 返回 boolean
typeof [1,2,3,4]             // 返回 object
typeof {name:‘John‘, age:34} // 返回 object

 

null是一个只有一个值的特殊类型。表示一个空对象引用。

用 typeof 检测 null 返回是object。

var person = null;           // 值为 null(空), 但类型为对象

 

undefined 是一个没有设置值的变量。

typeof 一个没有值的变量会返回 undefined。

var person;                  // 值为 undefined(空), 类型是undefined

 

null 和 undefined 的值相等,但类型不等:

typeof undefined             // undefined
typeof null                  // object
null === undefined           // false
null == undefined            // true

 

2020.11.16 typeof null undefined

标签:false   string   操作符   ===   val   bool   boolean   操作   als   

原文地址:https://www.cnblogs.com/SirNie/p/14159877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!