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.

Pesquisar
Categorias
Leia Mais
Electronics and Electrical
Smart Base for TV
  Smart Base for TV – this device, eliminates the flaw that all TVs have: it...
Por Smart Base for TV 2024-11-12 11:41:07 0 3K
Programming
JavaScript has()
The has() function of the map object accepts a key in string format and returns a...
Por Jesse Thomas 2023-05-16 11:21:29 0 6K
Business
How Do Platform Algorithms Influence Content Visibility and Reach?
In the digital age, content creators, marketers, and businesses all strive for greater visibility...
Por Dacey Rankins 2025-02-20 17:07:28 0 2K
Телевидение
Прямая трансляция телеканала Москва 24
Городской круглосуточный информационный телеканал «Москва 24». Городские новости в...
Por Nikolai Pokryshkin 2022-10-10 11:27:59 0 20K
Golf
The Timeless Appeal of Golf: A Sport that Challenges and Inspires
Golf, often referred to as the "gentleman's game," holds a unique place in the world of sports....
Por Dacey Rankins 2024-06-26 19:56:34 0 10K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov