在Javascript Garden里读到这样一句话
The language also defines a global variable that has the value of undefined;this variable is also called undefined. However, this variable is neither a constant nor a keyword of the language. This means that its value can be easily overwritten.
他老人家的意思是,undefined
可以被重写。那么问题就来了。
那么在ECMAScript 5里,undefined究竟能不能被重写呢?
首先我们看一个例子
//在window域下
var undefined = "now it's defined";
console.log(undefined); //输出undefined
很奇怪的,undefined的值根本没有改变。那么Garden里的那句话岂不是出错了(后来证实那句话是在ECMAScript5之前写的)?
不过我们再来看一个例子。
(function(){
var undefined = 123;
console.log(undefined);//输出123
})()
诶,这里的值居然被重写了。所以我们可以得到一个结论,undefined在function作用域下是可以重写的,但是在window作用域(全局变量时)下,无法被重写
。
另外,NaN、Infinity等等是不是一样的结论呢?我们可以看下下面的这句话。
The value properties NaN, Infinity, and undefined of the Global Object have been changed to be read-only properties.
这句话是说,全局对象的属性Nan、Infinity、undefined都被变成了“只读属性”。
那我们怎样检验这些变量的属性呢?
Object.getOwnPropertyDescriptor(window, "undefined");
通过这样一个方法我们可以得到结果
Object {value: undefined, writable: false, enumerable: false, configurable: false}
所以在window作用域下是重写不了的。