This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The Object.defineProperties() static method defines new or modifies existing properties directly on an object, returning the object.
const object = {};
Object.defineProperties(object, {
property1: {
value: 42,
writable: true,
},
property2: {},
});
console.log(object.property1);
// Expected output: 42
Object.defineProperties(obj, props)
objThe object on which to define or modify properties.
propsAn object whose keys represent the names of properties to be defined or modified and whose values are objects describing those properties. Each value in props must be either a data descriptor or an accessor descriptor; it cannot be both (see Object.defineProperty() for more details).
Data descriptors and accessor descriptors may optionally contain the following keys:
configurabletrue if and only if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object. false
enumerabletrue if and only if this property shows up during enumeration of the properties on the corresponding object. false
A data descriptor also has the following optional keys:
valueThe value associated with the property. Can be any valid JavaScript value (number, object, function, etc.). Defaults to undefined.
writabletrue if and only if the value associated with the property may be changed with an assignment operator. false
An accessor descriptor also has the following optional keys:
getA function which serves as a getter for the property, or undefined if there is no getter. The function's return value will be used as the value of the property. Defaults to undefined.
setA function which serves as a setter for the property, or undefined if there is no setter. The function will receive as its only argument the new value being assigned to the property. Defaults to undefined.
If a descriptor has neither of value, writable, get and set keys, it is treated as a data descriptor. If a descriptor has both value or writable and get or set keys, an exception is thrown.
The object that was passed to the function.
const obj = {};
Object.defineProperties(obj, {
property1: {
value: true,
writable: true,
},
property2: {
value: "Hello",
writable: false,
},
// etc. etc.
});
| Desktop | Mobile | Server | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | Bun | Deno | Node.js | |
defineProperties |
5 | 12 | 4 | 11.6 | 5 | 18 | 4 | 12 | 5 | 1.0 | 4.4 | 5 | 1.0.0 | 1.0 | 0.10.0 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperties