JavaScript String - Propriété du constructeur

La description

Un constructeur renvoie une référence à la fonction de chaîne qui a créé le prototype de l'instance.

Syntaxe

Sa syntaxe est la suivante -

string.constructor

Valeur de retour

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

Exemple

Essayez l'exemple suivant.

<html>
   <head>
      <title>JavaScript String constructor Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var str = new String( "This is string" );
         document.write("str.constructor is:" + str.constructor); 
      </script>      
   </body>
</html>

Production

str.constructor is: function String() { [native code] }