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
Телевидение
World Fashion Channel Live TV.
World Fashion Channel – это международный телеканал о современных тенденциях в индустрии...
By Nikolai Pokryshkin 2022-11-01 08:49:23 0 36K
Business
What Are the Biggest Challenges Entrepreneurs Face?
Entrepreneurship is an exciting and rewarding journey, but it also comes with its fair share of...
By Dacey Rankins 2025-03-17 18:41:00 0 11K
Business and Corporate Finance
How Do Businesses Price Products or Services?
How Do Businesses Price Products or Services? Understanding Costs, Margins, and Market...
By Leonard Pokrovski 2026-01-10 10:21:50 0 8K
Financial Services
How to make big amounts of money
How to Make Big MoneyThe desire to earn big money should have a practical implementation in the...
By FWhoop Xelqua 2023-06-13 19:49:49 0 23K
Personal Development
How do I improve leadership skills?
How Do I Improve Leadership Skills? Leadership is not limited to job titles or management...
By Michael Pokrovski 2026-02-10 20:10:31 0 4K

BigMoney.VIP Powered by Hosting Pokrov