在JavaScript中,可以通过以下几种方式在对象的属性上添加属性:
const obj = {};
obj.name = 'John';
const obj = {};
const propName = 'name';
obj[propName] = 'John';
const obj = {};
Object.defineProperty(obj, 'name', {
value: 'John',
writable: true,
enumerable: true,
configurable: true
});
const obj = {};
Object.defineProperties(obj, {
name: {
value: 'John',
writable: true,
enumerable: true,
configurable: true
},
age: {
value: 25,
writable: true,
enumerable: true,
configurable: true
}
});
以上是在JavaScript中添加属性的几种常见方式。根据具体的需求和场景,选择适合的方式来添加属性。
领取专属 10元无门槛券
手把手带您无忧上云