![]() |
VOOZH | about |
JavaScript Reflect.construct() method in JavaScript is used to call a new target. It gives also the added option to specify a different prototype.
Syntax:
Reflect.construct(para1, para2, para3)Parameters: This method accepts three parameters as mentioned above and described below:
Return Value: This method returns a new instance of the target.
Exceptions: A TypeError is an exception given as the result when the target is not a constructor.
The below examples illustrate the Reflect.construct() method in JavaScript:
Example 1: This example shows the basic use of the Reflect.construct() method in JavaScript.
6 6 8 6
Example 2: This example shows the basic use of the Reflect.construct() method in JavaScript.
one one true false false true
The browsers are supported by JavaScript Reflect.apply() Methods are listed below:
We have a complete list of Javascript Reflects methods, to check those go through the JavaScript Reflect Reference article.