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
Arts, Culture and Entertainment
Sunset Blvd. (1950)
A screenwriter develops a dangerous relationship with a faded film star determined to make a...
By Leonard Pokrovski 2022-12-16 15:53:32 0 26K
Marketing and Advertising
How Do I Write Effective Online Ads? Ad Copywriting Tips and Examples
Writing effective online ads is both an art and a science. With limited space, short attention...
By Dacey Rankins 2026-01-29 19:20:15 0 1K
Business
Are There Examples of Well-Crafted Startup Biographies?
Many of the world’s most successful companies have startup stories that read like gripping...
By Dacey Rankins 2025-04-21 18:10:22 0 12K
Business
How Should Follow-Up Be Handled After Resolving a Conflict?
Successfully resolving a conflict is just one part of the process. Effective follow-up ensures...
By Dacey Rankins 2025-08-04 18:30:23 0 4K
Kabbadi
Kabbadi - What is it?
Now the strangest martial art in the world can be followed on the Internet.Wrestling is not the...
By FWhoop Xelqua 2022-09-30 13:45:59 0 24K

BigMoney.VIP Powered by Hosting Pokrov