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
Personal Finance
What Are Good Financial Goals and How Do I Set Them?
What Are Good Financial Goals and How Do I Set Them? Financial goals are the stepping stones to...
By Leonard Pokrovski 2025-11-10 18:35:12 0 2K
Financial Services
Elasticity in areas other than price
Key points Elasticity is a general term, referring to percentage change of one...
By Mark Lorenzo 2023-07-07 20:37:00 0 14K
Tile Games
Tile Games: The Fascinating World of Strategy and Fun
Tile games have captivated players of all ages for centuries, combining elements of strategy,...
By Dacey Rankins 2024-11-20 18:30:58 0 11K
Internet
Google Ads Guide: Part 7 // Remarketing ; What is Remarketing?
Part 6: Google ads - Youtube ads (bigmoney.vip) Basic information – what is remarketing...
By FWhoop Xelqua 2023-02-11 20:45:09 0 23K
Financial Services
What are market-oriented environmental tools?
Key points The three main categories of market-oriented environmental policies are...
By Mark Lorenzo 2023-05-02 20:21:19 0 15K

BigMoney.VIP Powered by Hosting Pokrov