var cart = {
_wheels: 4,
get _wheels () {
return this._wheels;//Maximum call stack size exceeded
},
set _wheels (value) {
if (value < this._wheels) {
throw new Error('数值太小了!');
}
this._wheels = value;
}
}
console.log(cart._wheels);
cart._wheels = 1;
console.log(cart._wheels);
宝慕林4294392
相关分类