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
Business
How Do I Protect My Startup Idea?
Starting a business begins with a great idea, but that idea is vulnerable to being copied,...
By Dacey Rankins 2025-04-10 14:47:47 0 14K
Business
What to do if you have a mobile app idea: a beginner's guide.
What to do if you have a mobile app idea: a beginner's guide. One fine morning, you wake up with...
By Leonard Pokrovski 2024-08-28 22:25:54 0 23K
Marketing and Advertising
What Is Digital Out-of-Home (DOOH) Advertising?
Digital out-of-home (DOOH) advertising is transforming traditional outdoor advertising by...
By Dacey Rankins 2026-02-02 16:53:42 0 3K
Business
How Do I Turn Intangible Goals into SMART Goals You Can Meaningfully Measure?
Every business leader or professional has faced the challenge of setting goals that sound...
By Dacey Rankins 2025-08-27 14:53:59 0 10K
Business
What Should I Focus On to Grow as a Manager?
Growing as a manager involves more than just meeting targets and managing tasks—it’s...
By Dacey Rankins 2025-05-13 16:04:22 0 7K

BigMoney.VIP Powered by Hosting Pokrov