Stringa JavaScript - Proprietà costruttore
Descrizione
Un costruttore restituisce un riferimento alla funzione stringa che ha creato il prototipo dell'istanza.
Sintassi
La sua sintassi è la seguente:
string.constructor
Valore di ritorno
Restituisce la funzione che ha creato l'istanza di questo oggetto.
Esempio
Prova il seguente esempio.
<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>
Produzione
str.constructor is: function String() { [native code] }