The get
syntax binds an object property to a function that will be called when that property is looked up.
{get prop() { ... } } {get [expression]() { ... } }
prop
Sometimes it is desirable to allow access to a property that returns a dynamically computed value, or you may want to reflect the status of an internal variable without requiring the use of explicit method calls. In JavaScript, this can be accomplished with the use of a getter. It is not possible to simultaneously have a getter bound to a property and have that property actually hold a value, although it is possible to use a getter and a setter in conjunction to create a type of pseudo-property.
Note the following when working with the get
syntax:
get
or with a data entry for the same property ({ get x() { }, get x() { } }
and { x: ..., get x() { } }
are forbidden).A getter can be removed using the delete
operator.
This will create a pseudo-property latest
for object obj
, which will return the last array item in log
.
var obj = { log: ['example','test'], get latest() { if (this.log.length == 0) return undefined; return this.log[this.log.length - 1]; } } console.log(obj.latest); // "test".
Note that attempting to assign a value to latest
will not change it.
delete
operatorIf you want to remove the getter, you can just delete
it:
delete obj.latest;
defineProperty
To append a getter to an existing object later at any time, use Object.defineProperty()
.
var o = {a: 0}; Object.defineProperty(o, 'b', { get: function() { return this.a + 1; } }); console.log(o.b) // Runs the getter, which yields a + 1 (which is 1)
var expr = 'foo'; var obj = { get [expr]() { return 'bar'; } }; console.log(obj.foo); // "bar"
Getters give you a way to define a property of an object, but they do not calculate the property's value until it is accessed. A getter defers the cost of calculating the value until the value is needed, and if it is never needed, you never pay the cost.
An additional optimization technique to lazify or delay the calculation of a property value and cache it for later access are smart or memoized getters. The value is calculated the first time the getter is called, and is then cached so subsequent accesses return the cached value without recalculating it. This is useful in the following situations:
This means that you shouldn't use a lazy getter for a property whose value you expect to change, because the getter will not recalculate the value.
In the following example, the object has a getter as its own property. On getting the property, the property is removed from the object and re-added, but implicitly as a data property this time. Finally the value gets returned.
get notifier() { delete this.notifier; return this.notifier = document.getElementById('bookmarked-notification-anchor'); },
For Firefox code, see also the XPCOMUtils.jsm code module, which defines the defineLazyGetter()
function.
get
Vs. defineProperty
While using the get
keyword and Object.defineProperty()
have similar results there is a subtle difference between the two when used on classes
.
When using get
the property will be defined on the prototype of the object while using Object.defineProperty()
the property will be defined on the instance it is applied to.
class Example { get hello() { return 'world'; } } const obj = new Example(); console.log(obj.hello); // "world" console.log(Object.getOwnPropertyDescriptor(obj, 'hello')); // undefined console.log(Object.getOwnPropertyDescriptor(Object.getPrototypeOf(obj), 'hello')); // { configurable: true, enumerable: false, get: function get hello() { return 'world'; }, set: undefined }
Specification | Status | Comment |
---|---|---|
ECMAScript 5.1 (ECMA-262) The definition of 'Object Initializer' in that specification. | Standard | Initial definition. |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Method definitions' in that specification. | Standard | Added computed property names. |
ECMAScript Latest Draft (ECMA-262) The definition of 'Method definitions' in that specification. | Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 1 | Yes | 2 | 9 | 9.5 | 3 |
Computed property names | 46 | Yes | 34 | No | 47 | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 1 | 18 | Yes | 4 | Yes | Yes | Yes |
Computed property names | 46 | 46 | Yes | 34 | Yes | No | 5.0 |
Server | |
---|---|
Node.js | |
Basic support | Yes |
Computed property names | Yes |
delete
Object.defineProperty()
__defineGetter__
__defineSetter__
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/get