Numéro JavaScript - constructeur ()

La description

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

Syntaxe

Sa syntaxe est la suivante -

number.constructor()

Valeur de retour

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

Exemple

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

Production

num.constructor() is : function Number() { [native code] }