第一章
基本数据类型:Undefined
、Null
、Boolean
、Number、
String
。还有1中复杂的数据类型:Object
特别的类型:Function、Array
判断数据类型的方法:
1、typeof
用法:
let a = 100;
console.log(typeof a); //'number'
可以判断的类型是:Boolean
、Number、String、Undefined、Function
返回类型:string
2、instanceof
用法:
let a = {};
console.log(a instanceof Object); //ture
判断具体的 Object 类型
返回值:boolean
3、===
可以判断 :Undefined、Null