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.

Zoeken
Categorieën
Read More
Business
How Should I Give Feedback to Different Roles? (Boss, Peer, Direct Report)
Giving feedback is essential to creating a healthy, productive work environment—but how you...
By Dacey Rankins 2025-07-23 12:24:34 0 5K
Human Resources
Is Human Resources a Good Career?
Choosing the right career path is one of the most important decisions a person can make. With so...
By Dacey Rankins 2026-03-23 14:15:30 0 1K
Onderwijs
The Importance of Art Education: Nurturing Creativity and Innovation
Art education plays a significant role in the holistic development of individuals, fostering...
By Dacey Rankins 2025-01-24 18:13:07 0 13K
Business and Corporate Finance
What Is Break-Even Analysis?
What Is Break-Even Analysis? Break-even analysis is a fundamental financial tool used by...
By Leonard Pokrovski 2026-01-10 10:18:45 0 5K
Business
What Is a Social Enterprise?
In today’s world, more businesses are being built not just to generate profit—but to...
By Dacey Rankins 2025-04-14 13:56:15 0 13K

BigMoney.VIP Powered by Hosting Pokrov