Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Object.defineProperty() vs Object.prototype.property vs Object.property when to use what?

Can somebody give me a good use case of when to use Object.defineProperty(), Object.prototype.property and Object.property.

like image 740
dom Avatar asked Aug 04 '15 18:08

dom


1 Answers

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"])

like image 99
Mike G Avatar answered Oct 23 '22 17:10

Mike G