Tuesday, November 19, 2024
Google search engine
HomeLanguagesJavascriptJavaScript Object.prototype.__lookupSetter__() Method

JavaScript Object.prototype.__lookupSetter__() Method

The JavaScript Object.prototype.__lookupSetter__ () method is used to get a reference to the setter function when it was defined for a property of an object. It was not possible to refer to the setter function through that property because it refers to the function’s return value. It returns the function that is bound to the specified property as a setter.

Syntax:

O.prototype.__lookupSetter__ (P)

Terminology:

  • O: It refers to Object(this value). Object accepts the argument value. It converts the argument to an object value.
  • P : It refers to a string key that is generated from the property (P). It refers to the name of the property that should be returned by the setter.

Return value:

  • Returns undefined if object O is null or IsAccessorDescriptor is false.
  • If the object O is not null and IsAccessorDescriptor is true, the function bound as a setter to the specified property is returned.

Example 1:  It returns a function named gfg().

Javascript




const gfgObject = {
    set gfg(arg) {
        this.portalName = arg;
        console.log(portalName)
    }
};
 
const gfgFunction = gfgObject.__lookupSetter__('gfg')
gfgFunction("neveropen");


Output

neveropen

Web standards no longer recommend this feature. Though it is still supported by some browsers, such as Google Chrome, it is being phased out. It should not be used in any new or old project. It is possible that pages or web apps that rely on it will fail any time.

It is recommended to use Object.getOwnPropertyDescriptor().set, which takes two parameters.

  • Object in which the property should be sought.
  • Name of the property from which the description is to be retrieved.

Note: It returns the function that serves as the property’s setter, or undefined if there is no setter.

Example 2: 

Javascript




const gfgObject = {
    set gfg(arg) {
        this.portalName = arg;
        console.log(portalName)
    }
};
const gfgFunction =
    Object.getOwnPropertyDescriptor(gfgObject, "gfg").set
gfgFunction("neveropen");


Output

neveropen

Supported Browsers:

  • Google Chrome
  • Internet Explorer
  • Firefox

Note:This function has been DEPRECATED and no longer recommended.

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments