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