🌈 基本类型

复杂类型

🌈 区别

两种类型的区别是:存储位置不同;

Untitled

JS 类型检测

🌈 typeof 检测某个值是什么类型

console.log(typeof [] === 'object'); // true
console.log(typeof null === 'object'); // true
console.log(typeof(undefined)); // undefined
console.log(typeof(NaN)); // number