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
What Mistakes Should We Avoid in Business Development?
Business development (BD) is a critical driver of growth, revenue, and strategic expansion. Yet,...
By Dacey Rankins 2025-11-18 17:15:39 0 5K
Television
Appian Media. Live TV. USA
Appian Media is not-for-profit Cristian team, leveraging today's technology to create new and...
By Nikolai Pokryshkin 2022-10-02 07:37:42 0 43K
Marketing and Advertising
What Platforms Use PPC Advertising?
Pay-per-click (PPC) advertising is not limited to one website or network. Today, many major...
By Dacey Rankins 2026-02-04 17:39:11 0 3K
Business
How Do You Motivate and Inspire Your Team?
Great leadership is not just about managing tasks—it's about energizing people. Motivating...
By Dacey Rankins 2025-05-07 14:26:59 0 7K
Business
What books should startup founders read?
Building a startup is an exhilarating yet daunting journey. From ideation to scaling, startup...
By Dacey Rankins 2025-04-14 13:34:49 0 11K

BigMoney.VIP Powered by Hosting Pokrov