根据JavaScript中的变量类型传递方式,分为基本数据类型和引用数据类型两大类七种。 基本数据类型包括 Undefined、 Null、Boolean、Number、String、Symbol (ES6 新增)六种。引 用数据类型只有Object -种,主要包括对象、数组和函数。
判断数据类型采用typeof操作符,有两种语法:
typeof 123;// 语法一
const FG = 123;
typeof FG;//语法二
typeof (null) //返回 object;
null = undefined //返回 true,因为 undefined 派生自 null;
null = undefined //返回 false
Was this helpful?
0 / 0