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.

Buscar
Categorías
Read More
Marketing and Advertising
How Do I Start Online Advertising? A Step-by-Step Guide
Starting online advertising can feel overwhelming. With so many platforms, formats, metrics, and...
By Dacey Rankins 2026-01-28 16:00:59 0 1K
Business
What Is a Sales Funnel and How Does It Work?
The sales funnel is one of the most important concepts in sales and marketing, yet it’s...
By Dacey Rankins 2025-12-19 19:17:32 0 3K
Business
Why Do I Need a Business Consulting Service?
In today’s competitive and ever-evolving business environment, companies face various...
By Dacey Rankins 2025-02-10 18:11:31 0 12K
Business
How to Write a Catchy Press Release
What is a press release?The concept of a press release should be determined on the shore in order...
By Dacey Rankins 2024-09-09 16:58:03 0 13K
Marketing and Advertising
How to Measure the Success of a Video Marketing Campaign
1. Introduction: Why Measuring Matters Video marketing has become one of the most effective ways...
By Dacey Rankins 2025-11-12 16:02:40 0 5K

BigMoney.VIP Powered by Hosting Pokrov