JavaScript set()

0
6K

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.

Cerca
Categorie
Leggi tutto
Business
How Does Technology, Particularly AI, Influence Startup Innovation?
In today’s fast-evolving business landscape, technology, especially artificial intelligence...
By Dacey Rankins 2025-03-21 14:15:44 0 2K
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 25K
Homemaking
Top 5 Home Based Business Ideas
The opening of home productions is gaining more and more popularity. A small workshop is a good...
By FWhoop Xelqua 2023-03-09 19:28:57 0 12K
Museums
Unveiling the Treasure Troves: The Art of Referencing in Museums
Unveiling the Treasure Troves: The Art of Referencing in Museums Museums stand as sanctuaries of...
By Leonard Pokrovski 2024-05-22 19:09:02 0 10K
Drugs
Exploring the Recreational Use of Prescription Drugs: Balancing Benefits and Risks
Exploring the Recreational Use of Prescription Drugs: Balancing Benefits and Risks Introduction:...
By Leonard Pokrovski 2024-05-09 10:00:34 0 10K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov