JavaScript set()

0
12K

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.

Site içinde arama yapın
Kategoriler
Read More
Marketing and Advertising
How to Write Compelling Headlines That Capture Attention
Introduction: Why Headlines Matter More Than Ever In today’s fast-paced digital world,...
By Dacey Rankins 2025-10-01 14:36:45 0 7K
Financial Services
Price ceilings and price floors
Key points Price ceilings prevent a price from rising above a certain level....
By Mark Lorenzo 2023-04-17 20:06:12 0 14K
Customer Service
What Is Active Listening in Customer Service?
Active listening is one of the most important communication skills in customer service. It refers...
By Dacey Rankins 2026-03-10 19:50:46 0 4K
Научная фантастика и фэнтези
Звёздные войны. Эпизод VI: Возвращение Джедая. Star Wars: Episode VI - Return of the Jedi. (1983)
В шестом эпизоде «Звездных войн» Дарт Вейдер создает вторую «Звезду...
By Nikolai Pokryshkin 2023-01-08 22:53:53 0 44K
История
Монти Пайтон и священный Грааль. Monty Python and the Holy Grail. (1975)
Король Артур и рыцари Круглого стола отправляются в невероятное путешествие на поиски Святого...
By Nikolai Pokryshkin 2023-02-20 12:30:09 0 31K

BigMoney.VIP Powered by Hosting Pokrov