typeof
常用于检查基本数据类型,如果变量的值是对象或者null时返回“object”
instanceof
用于检测对象是一个什么类型的对象
console.log(person instanceof Object); //true
console.log(patt instanceof RegExp); //true
常用于检查基本数据类型,如果变量的值是对象或者null时返回“object”
用于检测对象是一个什么类型的对象
console.log(person instanceof Object); //true
console.log(patt instanceof RegExp); //true