我想通过称为此代码的方法更改对象的属性:
MAP = MAP || {
level: 0
updateProperty(property, value){
if (this.hasOwnProperty(property){
this.property = value
}
}
}
但是当我触发这段代码时,我会在我的对象中创建名为“property”的新属性。但我想将“财产”视为变量,而不是新财产!
我想通过称为此代码的方法更改对象的属性:
MAP = MAP || {
level: 0
updateProperty(property, value){
if (this.hasOwnProperty(property){
this.property = value
}
}
}
但是当我触发这段代码时,我会在我的对象中创建名为“property”的新属性。但我想将“财产”视为变量,而不是新财产!