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
Business
What Are the Key Responsibilities of a Startup CEO?
The role of a startup CEO is one of the most demanding and dynamic in the business world. Unlike...
By Dacey Rankins 2025-05-05 14:46:49 0 11K
Business
“Tell Me About Yourself”: How to Answer This Classic Interview Opener
"Tell me about yourself."It’s often the very first question in a job interview—and...
By Dacey Rankins 2025-06-17 16:05:00 0 26K
Economics
What Skills Are Needed for Economic Development Jobs?
What Skills Are Needed for Economic Development Jobs? Economic development is a dynamic field...
By Leonard Pokrovski 2026-04-16 17:20:30 0 892
Ужасы
Головокружение. Vertigo. (1958)
Скотти Фергюсон - отставной сыщик, которого не назовешь баловнем судьбы: одинокий, оставшийся за...
By Nikolai Pokryshkin 2023-01-17 10:22:33 0 34K
Социальные проблемы
Леон Профессионал. Léon: The Professional. (1994)
Профессиональный убийца Леон неожиданно для себя самого решает помочь 12-летней соседке Матильде,...
By Nikolai Pokryshkin 2022-11-26 22:44:17 0 37K

BigMoney.VIP Powered by Hosting Pokrov