JavaScript set()
Posted 2023-05-17 19:24:16
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
- Arts
- Business
- Computers
- Oyunlar
- Health
- Home
- Kids and Teens
- Money
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Read More
"Traitor to the motherland and draft dodger": how the boxing legend from the United States did not want to participate in the mobilization
A high-profile story about Muhammad Ali.
In the middle of the last century, the US military...
Nursing
Nursing
Patient care is a set of measures to serve patients (limited in...
The Unholy (2021)
A hearing-impaired girl is visited by the Virgin Mary and can suddenly hear, speak, and heal the...
The Evolution of Hardware: The Backbone of Modern Technology
In the world of technology, hardware refers to the physical components of a computer or...
What Are the Company's Core Values, and How Do They Impact the Workplace?
Why Understanding Core Values Is Key to Cultural Alignment and Operational Integrity
When...