JavaScript set()
Posted 2023-05-17 19:24:16
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.
Cerca
Categorie
- Arts
- Business
- Computers
- Giochi
- Health
- Home
- Kids and Teens
- Money
- News
- Personal Development
- Recreation
- Regional
- Reference
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Личное развитие
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Leggi tutto
Employee Motivation: Trends, Science, Practice, Assessment
Employee Motivation: Trends, Science, Practice, AssessmentMaterial and Non-Material Incentives...
The expenditure-output, or Keynesian cross, model
Key points
The expenditure-output model, or Keynesian cross diagram, shows how the...
How to Manage Customer Relationships? Most Companies Don’t Have a Communication Problem. They Have a Consistency Problem.
A client once forwarded me an email thread with the subject line:
“Just checking in...
Children's Health Trends: Insights Backed by Research and Statistics
In recent years, research and statistical analysis have provided invaluable insights into the...
How Do Remote Teams Affect Knowledge Capital?
The rise of remote work has fundamentally transformed how organizations operate, communicate, and...