JavaScript - Méthode du constructeur booléen ()

La description

JavaScript booléen constructor() La méthode renvoie une référence à la fonction booléenne qui a créé le prototype de l'instance.

Syntaxe

Utilisez la syntaxe suivante pour créer une méthode Boolean constructor ().

boolean.constructor()

Valeur de retour

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

Exemple

Essayez l'exemple suivant.

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

Production

bool.constructor() is : function Boolean() { [native code] }