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.

Cerca
Categorie
Leggi tutto
Business
Employee Motivation: Trends, Science, Practice, Assessment
Employee Motivation: Trends, Science, Practice, AssessmentMaterial and Non-Material Incentives...
By Leonard Pokrovski 2024-08-11 16:05:13 0 24K
Financial Services
The expenditure-output, or Keynesian cross, model
Key points The expenditure-output model, or Keynesian cross diagram, shows how the...
By Mark Lorenzo 2023-06-14 20:21:07 0 14K
Business
How to Manage Customer Relationships? Most Companies Don’t Have a Communication Problem. They Have a Consistency Problem.
A client once forwarded me an email thread with the subject line: “Just checking in...
By Dacey Rankins 2026-05-21 15:54:16 0 2K
Health
Children's Health Trends: Insights Backed by Research and Statistics
In recent years, research and statistical analysis have provided invaluable insights into the...
By Dacey Rankins 2024-04-30 18:30:08 0 23K
Human Resources
How Do Remote Teams Affect Knowledge Capital?
The rise of remote work has fundamentally transformed how organizations operate, communicate, and...
By Dacey Rankins 2026-03-27 17:50:09 0 3K

BigMoney.VIP Powered by Hosting Pokrov