在五种基本 JavaScript 数据类型(string
、number
、和)中boolean
,前三种具有关联的构造函数:null
undefined
new String("Hello!")
new Number(40)
new Boolean(true)
构造的对象是对象字面量的包装器。特别是,new String("Hello!") === "Hello!"
评估为false
。
是否有类似的构造函数用于生成与相应对象字面量不同的对象包装器的null
原始undefined
数据类型?