![]() |
VOOZH | about |
JavaScript Reflect.get() method in JavaScript is used to allow users to get the property from an object as a function. This method always returns the value of the property.
Syntax:
Reflect.get(target, propertyKey, receiver)
Parameters: This method accepts three parameters as mentioned above and described below:
Return value: This method always returns the value of the property.
Exceptions: A TypeError is an exception given as the result when the target is not an Object.
The below examples illustrate the Reflect.get() Method in JavaScript:
Example 1: In this example, we will get the property of the object using the Reflect.get() Method in JavaScript.
1 true true false geeks4
Example 2: In this example, we will get the property of the object abc using the Reflect.get() Method in JavaScript.
geeksforgeeks false true
The browsers are supported by JavaScript Reflect.get() Methods are listed below:
We have a complete list of Javascript Reflects methods, to check those go through the JavaScript Reflect Reference article.