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
Business
What Lessons or Leadership Principles Can I Learn from Their Lives?
Studying leaders offers actionable insights into decision-making, ethics, and vision. Common...
By Dacey Rankins 2025-08-13 21:15:01 0 5K
Marketing and Advertising
Why Was My AdSense Account Suspended or Banned?
Few things are more frustrating for a website owner or creator than opening their email and...
By Dacey Rankins 2025-12-25 20:14:00 0 2K
Ужасы
Чужие. Aliens. (1986)
Чужой – совершенный организм. Идеальная машина для убийства, чье физическое превосходство...
By Nikolai Pokryshkin 2022-12-20 10:23:51 0 29K
Спорт
Рокки. Rocky. (1976)
Филадельфия. Рокки Бальбоа — молодой боксёр, который живёт в захудалой квартирке и еле...
By Nikolai Pokryshkin 2023-04-15 11:56:09 0 30K
Social Issues
Monster (2021)
Monster tells the story of Steve Harmon (Kelvin Harrison, Jr.) a seventeen-year-old honor student...
By Leonard Pokrovski 2022-09-07 13:37:58 0 38K

BigMoney.VIP Powered by Hosting Pokrov