Open In App

JavaScript Object __defineGetter__() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The __defineGetter__() method is used to bind an object’s property to a function which will be called when the specified property is looked up. It is recommended to use the object initializer syntax or the Object.defineProperty() API instead of this method as it is being deprecated.

Syntax: 

obj.__defineGetter__( prop, func )

Parameters: This function accepts two parameters as given above and described below:

  • prop: It is a string that contains the name of the property to bind to the given function.
  • fun: It is a function to be called when the property is looked up.

Return Values: This method returns undefined.

Example 1: Using the __defineGetter__ () method

Javascript




let obj = {};
obj.__defineGetter__('printTen', function () {
    return 10;
});
console.log(obj.printTen);


 Output:

10

Example 2: Using the standard-compliant way using object initializer syntax and Object.defineProperty() API. 

Javascript




// Using the get operator
let obj = {
    get printTen() { return 10; }
};
console.log(obj.printTen);
 
// Using Object.defineProperty
let obj1 = {};
Object.defineProperty(obj1, 'printTwo', {
    get: function () {
        return 2;
    }
});
console.log(obj1.printTwo);


 Output:

10
2

We have a complete list of Javascript Object Methods, to check those please go through the Javascript Object Complete Reference article.

Supported Browser:

  • Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Internet Explorer 11 and above
  • Opera 9.5 and above
  • Safari 3 and above

Last Updated : 19 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads