Can somebody give me a good use case of when to use Object.defineProperty(), Object.prototype.property and Object.property.
Imagine we have a person
object with an age
property with a value of 20
.
The Object.defineProperty() method defines a new property directly on an object, or modifies an existing property on an object, and returns the object.
Object.defineProperty(obj, prop, descriptor)
How is this different than the normal assignment operator?
It gives you more control over creating a property than standard assignment (person.age = 25
). On top of setting the value, you can specify whether a property can be deleted or edited among other things outlined in more detail here Object.defineProperty() page.
A few examples
To add an name field to this person that cannot be changed with an assignment operator:
Object.defineProperty(person, "name", {value: "Jim", writable: false})
or to update the age property and make it editable:
Object.defineProperty(person, "age", {value: 25, writable: true})
.
Object.prototype.property and Object.property both refer to accessing a property of an object. This is like accessing the age
property of the person
object using person.age
(you can also use person["age"]
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With