JavaScript set()

0
11K

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.

Examples

 

Defining a setter on new objects in object initializers

The following example define a pseudo-property current of object language. When current is assigned a value, it updates log with that value:

const 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.

Buscar
Categorías
Read More
Horror
Aliens. (1986)
Fifty-seven years after surviving an apocalyptic attack aboard her space vessel by merciless...
By Leonard Pokrovski 2022-12-22 21:11:51 0 38K
Europe
Europe: A Tapestry of Culture, History, and Diversity
Europe: A Tapestry of Culture, History, and Diversity Europe, the cradle of Western...
By Leonard Pokrovski 2024-05-22 19:57:18 0 21K
Научная фантастика и фэнтези
Ая и ведьма. Earwig and the Witch. (2021)
Несмотря на то что 10-летняя Ая не знает родительской ласки и воспитывается в детском приюте...
By Nikolai Pokryshkin 2022-09-21 19:57:32 0 40K
Социальные проблемы
Элегия Хиллбилли. Hillbilly Elegy. (2020)
Исследование темы американской мечты на примере трёх поколений одной семьи, живущих в горах...
By Nikolai Pokryshkin 2022-10-06 22:16:57 0 29K
Marketing and Advertising
What Is Outdoor Advertising?
Outdoor advertising is one of the oldest and most recognizable forms of marketing, yet it remains...
By Dacey Rankins 2026-01-30 19:05:26 0 2K

BigMoney.VIP Powered by Hosting Pokrov