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
Productivity
How to finish assignments faster?
How to Finish Assignments Faster Finishing assignments quickly is not about rushing or...
By Michael Pokrovski 2026-04-27 20:40:40 0 175
Music
1 Soothing Ocean Sounds for Ultimate Relaxation and Stress Relief. Alternative, Punk & Ambient music
  In today’s fast-paced world, stress and anxiety are nearly unavoidable. Amid the...
By Gpykin 2025-06-06 20:25:19 1 41K
kişiler
Society and People: Navigating the Interplay of Collective and Individual Identities
Society, that vast tapestry of human interaction, is woven from the threads of individual lives....
By Dacey Rankins 2024-06-11 17:47:37 0 16K
Personal Finance
What Is the Median Salary in My City or Country?
What Is the Median Salary in My City or Country? A Practical Guide to Understanding and Finding...
By Leonard Pokrovski 2025-11-28 21:27:54 0 8K
Outdoors
What gives people outdoor recreation
What gives people recreation in nature. Free space, the absence of crowds,...
By FWhoop Xelqua 2022-11-12 13:10:13 0 25K

BigMoney.VIP Powered by Hosting Pokrov