JavaScript - Propriété du constructeur RegExp

La description

Il renvoie une référence à la fonction de tableau qui a créé le prototype de l'instance.

Syntaxe

Sa syntaxe est la suivante -

RegExp.constructor

Valeur de retour

Renvoie la fonction qui a créé l'instance de cet objet.

Exemple

Essayez l'exemple de programme suivant.

<html>   
   <head>
      <title>JavaScript RegExp constructor Property</title>
   </head>
   
   <body>      
      <script type = "text/javascript">
         var re = new RegExp( "string" );
         document.write("re.constructor is:" + re.constructor); 
      </script>      
   </body>
</html>

Production

re.constructor is: function RegExp() { [native code] }