The set
syntax binds an object property to a function to be called when there is an attempt to set that property.
{set prop(val) { . . . }} {set [expression](val) { . . . }}
prop
val
prop.
In JavaScript, a setter can be used to execute a function whenever a specified property is attempted to be changed. Setters are most often used in conjunction with getters to create a type of pseudo-property. It is not possible to simultaneously have a setter on a property that holds an actual value.
Note the following when working with the set
syntax:
set
or with a data entry for the same property.{ set x(v) { }, set x(v) { } }
and { x: ..., set x(v) { } }
are forbidden )A setter can be removed using the delete
operator.
This will define a pseudo-property current
of object o
that, when assigned a value, will update log
with that value:
var language = { set current(name) { this.log.push(name); }, log: [] } language.current = 'EN'; console.log(language.log); // ['EN'] language.current = 'FA'; console.log(language.log); // ['EN', 'FA']
Note that current
is not defined and any attempts to access it will result in undefined
.
delete
operatorIf you want to remove the setter, you can just delete
it:
delete o.current;
defineProperty
To append a setter to an existing object later at any time, use Object.defineProperty()
.
var o = {a: 0}; Object.defineProperty(o, 'b', { set: function(x) { this.a = x / 2; } }); o.b = 10; // Runs the setter, which assigns 10 / 2 (5) to the 'a' property console.log(o.a) // 5
var expr = 'foo'; var obj = { baz: 'bar', set [expr](v) { this.baz = v; } }; console.log(obj.baz); // "bar" obj.foo = 'baz'; // run the setter console.log(obj.baz); // "baz"
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 2017 Draft (ECMA-262) The definition of 'Method definitions' in that specification. | Draft |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1 | 2.0 (1.8.1) | 9 | 9.5 | 3 |
Computed property names | No support | 34 (34) | No support | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.8.1) | (Yes) | (Yes) | (Yes) |
Computed property names | No support | No support | 34.0 (34.0) | No support | No support | No support |
SyntaxError
as per the ES2015 specification.delete
Object.defineProperty()
__defineGetter__
__defineSetter__
© 2005–2017 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/set