JavaScript set()

0
12K

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
Personal Finance
How Much Should I Have in an Emergency Fund? 3 Months or 6 Months? How Big Should My Emergency Fund Be?
How Much Should I Have in an Emergency Fund? 3 Months or 6 Months? How Big Should My Emergency...
By Leonard Pokrovski 2025-12-03 17:08:28 0 6K
Economics
What causes economic growth?
Economic growth—the sustained increase in a country’s production of goods and...
By Leonard Pokrovski 2026-04-22 19:21:04 0 803
Pets
Exploring the World of Pet Shopping: From Essentials to Luxuries
Exploring the World of Pet Shopping: From Essentials to Luxuries In recent years, the way we...
By Leonard Pokrovski 2024-06-01 11:55:21 0 32K
Healthcare
The Importance of Healthcare: A Vital Pillar for Well-Being
Healthcare is a fundamental aspect of society, playing a critical role in maintaining and...
By Dacey Rankins 2025-01-20 16:23:19 0 17K
Business
What Leadership Style Does a CEO Typically Adopt?
The leadership style of a CEO significantly shapes an organization’s culture, performance,...
By Dacey Rankins 2025-08-06 11:01:26 0 8K

BigMoney.VIP Powered by Hosting Pokrov