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
Real Estate
Real Estate: A Cornerstone of the Economy
Real estate is one of the most significant sectors in the global economy, influencing not only...
By Dacey Rankins 2025-01-22 14:32:32 0 20K
Motorcycles
The Thrill of Motorcycles: A Deep Dive into Riding Culture and Innovation
Motorcycles are more than just a mode of transportation; they represent freedom, adventure, and a...
By Dacey Rankins 2024-10-11 15:58:15 0 28K
Business
Is Affiliate Marketing Legit?
Affiliate marketing exists in a strange cultural category. It is simultaneously: A legitimate...
By Dacey Rankins 2026-05-13 21:19:46 0 1K
Жизненные вопросы
Головоломка. Inside Out. (2016)
Райли — обычная 11-летняя школьница, и, как у каждого из нас, ее поведение определяют пять...
By Nikolai Pokryshkin 2023-03-05 14:55:29 0 36K
Marketing and Advertising
Are Newspaper Ads Still Relevant in 2026?
With digital advertising platforms dominating marketing conversations, many businesses ask a...
By Dacey Rankins 2026-01-27 20:29:36 0 9K

BigMoney.VIP Powered by Hosting Pokrov