JavaScript set()
Posted 2023-05-17 19:24:16
0
8K
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
.
Search
Categories
- Arts
- Business
- Computers
- Games
- Health
- Home
- Kids and Teens
- Money
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Read More
Unlocking the Power of References in Bibliographies: A Comprehensive Guide
Unlocking the Power of References in Bibliographies: A Comprehensive Guide
Bibliographies are...
How to Get Yourself 'Unstuck' at Work: Practical Strategies to Regain Momentum
Feeling stuck at work can be frustrating, demotivating, and even a little scary—especially...
Прямой эфир телеканала Пятница
Телеканал Пятница для тех, кто охотится за впечатлениями и хочет попробовать мир на вкус....
How Do CEOs Foster a Positive Organizational Culture?
A company’s culture—the shared values, beliefs, and behaviors that shape how work...
Top Gun: Maverick. (2022)
After thirty years, Maverick is still pushing the envelope as a top naval aviator, but must...