JavaScript - Proprietà costruttore di array
Descrizione
Matrice JavaScript constructor restituisce un riferimento alla funzione array che ha creato il prototipo dell'istanza.
Sintassi
La sua sintassi è la seguente:
array.constructor
Valore di ritorno
Restituisce la funzione che ha creato l'istanza di questo oggetto.
Esempio
Prova il seguente esempio.
<html>
<head>
<title>JavaScript Array constructor Property</title>
</head>
<body>
<script type = "text/javascript">
var arr = new Array( 10, 20, 30 );
document.write("arr.constructor is:" + arr.constructor);
</script>
</body>
</html>
Produzione
arr.constructor is: function Array() { [native code] }