JavaScript set()

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.

Search
Categories
Read More
Business
How Do I Overcome Nervousness Before Presenting?
Feeling nervous before presenting is one of the most universal human experiences. Even...
By Dacey Rankins 2025-12-04 16:30:07 0 4K
Business
How Do I Validate My Business Idea?
Validating a business idea is a crucial step in the entrepreneurial journey. Before diving into...
By Dacey Rankins 2025-03-04 14:41:31 0 13K
Ask an Expert
10 mistakes that will kill your expert video
Many experts make these mistakes and lose their audience. But they are easy to avoid - I have put...
By FWhoop Xelqua 2022-10-02 12:01:16 0 43K
Marketing and Advertising
Understanding Viral Marketing: Power, Pitfalls, and Practical Strategy
1. Introduction: The Allure of Going Viral In today’s fast-moving digital ecosystem, viral...
By Dacey Rankins 2025-11-12 16:06:19 0 5K
Business
How to effectively resolve conflicts in a team? Guide from the HR Director
How to effectively resolve conflicts in a team? Guide from the HR Director One colleague...
By Leonard Pokrovski 2024-08-11 17:11:36 0 18K

BigMoney.VIP Powered by Hosting Pokrov