这段代码中,为什么year声明的时候前面加了下划线,用的时候却没加,我尝试将声明处的下划线去掉,结果程序执行不了,求解释。
var book = {
_year:2004,
edition:1
};
Object.defineProperty(book,"year",{
get:function(){
return this._year;
},
set:function(newValue){
if(newValue>2004){
this._year = newValue;
this.edition += newValue - 2004;
}
}
});
book.year = 2005;
alert(book.edition);
墨色风雨