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.

Site içinde arama yapın
Kategoriler
Read More
Productivity
How do I avoid burnout while staying productive?
How Do I Avoid Burnout While Staying Productive? Burnout occurs when chronic stress outpaces...
By Michael Pokrovski 2026-02-19 20:26:23 0 1K
Business
LG launches Native Screensaver Ads. What is it?
The American company LG Ad Solutions, a division of the South Korean giant - the manufacturer of...
By Dacey Rankins 2024-09-18 17:35:52 0 17K
Social Issues
The Vault (2021)
Follows a genius engineering graduate who is interested in the Bank of Spain's safe. My Link
By Leonard Pokrovski 2022-09-14 20:38:07 0 30K
Financial Services
Macroeconomic perspectives on demand and supply
Key points Keynes’ Law states that demand creates its own supply....
By Mark Lorenzo 2023-03-13 20:40:21 0 14K
Programming
Python Slice Object
A slice object is used to specify how to slice a sequence. You can specify where to start the...
By Jesse Thomas 2023-02-27 22:23:14 0 12K

BigMoney.VIP Powered by Hosting Pokrov