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.

Buscar
Categorías
Read More
Economics
How Comparative Economics Studies Transition Economies: Countries Moving from Planned to Market Systems
How Comparative Economics Studies Transition Economies: Countries Moving from Planned to Market...
By Leonard Pokrovski 2026-03-05 23:29:58 0 9K
Productivity
How to stop procrastinating on homework?
How to Stop Procrastinating on Homework Procrastinating on homework is one of the most common...
By Michael Pokrovski 2026-04-25 22:25:36 0 2K
Business
How Does Page Speed Affect Conversion Rates?
In today’s digital-first world, users expect instant gratification. Whether they’re...
By Dacey Rankins 2025-09-10 15:09:48 0 8K
Directorio
Gone with the Wind. (1939)
American motion picture classic in which a manipulative woman and a roguish man conduct a...
By Leonard Pokrovski 2023-03-04 16:13:44 0 28K
Business
How Do Social Media Platforms Generate Leads?
Social media is no longer just a place to post content or build awareness. Today, it is one of...
By Dacey Rankins 2025-12-17 19:06:57 0 6K

BigMoney.VIP Powered by Hosting Pokrov