Open In App

JavaScript RegExp constructor Property

The RegExp constructor in JavaScript is used to return the function that created the RegExp object’s prototype i.e. the construction function for an object. It returns the different references for various JavaScript types:

Syntax:  



RegExpObject.constructor

Example 1: This example returns the type of constructor on variable regex.  




function RegExpConstructor() {
    let regexp = new RegExp("e{2, }", "gi");
    let rex = regexp.constructor;
     
    console.log("Constructor: " + rex);
}
 
RegExpConstructor();

Output

Constructor: function RegExp() { [native code] }

Example 2: This example returns the type of constructor on variable match4. 
 




function RegExpConstructor() {
    const str = "GeeeeK@128";
    let regex4 = new RegExp("e{2, }", "gi");
    let replace = "$";
    let match4 = str.replace(regex4, replace);
    let rx = match4.constructor;
     
    console.log("Constructor: " + rx);
}
 
RegExpConstructor();

Output
Constructor: function String() { [native code] }

Supported Browsers: The browsers supported by RegExp constructor are listed below: 

We have a complete list of JavaScript RegExp expressions, to check those please go through this JavaScript RegExp Complete Reference article.

We have a Cheat Sheet on JavaScript where we covered all the important topics of JavaScript to check those please go through JavaScript Cheat Sheet-A Basic guide to JavaScript.  


Article Tags :