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 Can I Earn on Social Security?
How Much Can I Earn on Social Security? Earnings Limits, Benefit Reductions & the Retirement...
By Leonard Pokrovski 2025-12-12 22:17:53 0 14K
Business
How Do I Speak Confidently in Front of Others?
Speaking confidently in front of others — whether it’s a class, a small group, or a...
By Dacey Rankins 2025-12-10 17:40:47 0 7K
Decision Making and Problem Solving
What are examples of problem solving in the workplace?
The Million-Dollar Blueprint That Fixed the Exact Wrong Widget A venerable industrial...
By Michael Pokrovski 2026-07-31 11:23:34 0 1K
Human Resources
Is Outsourcing Good or Bad for Businesses?
Outsourcing is one of the most debated strategies in modern business. Some companies swear by it...
By Dacey Rankins 2026-04-04 18:42:00 0 4K
Game Studies
Game Studies: The Intersection of Play, Culture, and Technology
Game studies is an interdisciplinary field that examines games as a cultural and social...
By Dacey Rankins 2024-10-21 16:59:53 0 18K

BigMoney.VIP Powered by Hosting Pokrov