Object.defineProperty()
JS ⟩ value ⟩ object ⟩ property ⟩ update ⟩ Object.defineProperty()
define/update a property on an object, and return the object.
The only reason (I can think of) why Object.defineProperty() is static (instead of an instance method) is that an object may not inherit methods from Object.prototype, which means obj.defineProperty()
may fail if this is the case.
Last updated
Was this helpful?