Die JavaScript-Methode Boolean.constructor() gibt einen Verweis auf die boolesche Prototypfunktion zurück, die die Instanz erstellt hat.
Grammatik
boolean.constructor()
Rückgabewert:
Hier sind die Details der Parameter:
Gibt die Instanz zurück, die dieses Objekt erstellt hat.
Beispiel:
<html> <head> <title>JavaScript constructor() Method</title> </head> <body> <script type="text/javascript"> var bool = new Boolean( ); document.write("bool.constructor() is:"+bool.constructor); </script> </body> </html>
Dies führt zu folgenden Ergebnissen:
bool.constructor() is : function Boolean() { [native code] }