Numero JavaScript - costruttore ()
Descrizione
Restituisce un riferimento alla funzione Number che ha creato il prototipo dell'istanza.
Sintassi
La sua sintassi è la seguente:
number.constructor()
Valore di ritorno
Restituisce la funzione che ha creato l'istanza di questo oggetto.
Esempio
<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>
Produzione
num.constructor() is : function Number() { [native code] }