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.

Site içinde arama yapın
Kategoriler
Read More
Business
Sales leads: types and methods of attraction
What does it mean? Sales leads are users who visited the website, visited the company's page on...
By Dacey Rankins 2024-09-13 19:07:34 0 14K
Financial Services
Indexing and its limitations
Key points A payment is said to be indexed if it is automatically...
By Mark Lorenzo 2023-06-12 20:20:02 0 12K
Money
How to Check Your Credit Score
How to Check Your Credit Score Your credit score is one of the most important numbers in your...
By Leonard Pokrovski 2025-09-17 19:56:43 0 7K
Life Issues
Grave of the Fireflies. (1988)
The story of Seita and Setsuko, two young Japanese siblings, living in the declining days of...
By Leonard Pokrovski 2022-12-06 20:01:30 0 24K
Marketing and Advertising
Why Should I Use Video Marketing? The Strategic Benefits for Modern Businesses
Introduction Video marketing is one of the most flexible and powerful tools in a...
By Dacey Rankins 2025-11-07 20:05:27 0 3K

BigMoney.VIP Powered by Hosting Pokrov