zhimazz/interview

【Q3】JS的原始数据类型

Opened this issue · 1 comments

下列哪项不是JS的原始数据类型

【A】 BigInt
【B】 Symbol
【C】 Array
【D】 undefined

正确答案C
最新的 ECMAScript 标准定义了 8 种数据类型:

7 种原始类型,使用 typeof 运算符检查:
undefined:typeof instance === "undefined"
Boolean:typeof instance === "boolean"
Number:typeof instance === "number"
String:typeof instance === "string
BigInt:typeof instance === "bigint"
Symbol :typeof instance === "symbol"
null:typeof instance === "object"。