A continuación se muestra el ejemplo de la propiedad del constructor booleano .
- Ejemplo:
javascript
<script type = "text/javascript"> var bool = false; document.write("bool.constructor:" + bool.constructor); </script>
- Producción:
bool.constructor:function Boolean() { [native code] }
En JavaScript, la propiedad del constructor booleano devuelve la función constructora de un objeto. Para JavaScript Boolean, la propiedad del constructor devuelve la función Boolean() { [código nativo] } .
Sintaxis:
boolean.constructor
Valor de retorno: Devuelve la función Boolean() { [código nativo] }.
Más códigos de ejemplo para la propiedad anterior son los siguientes:
Ejemplo 1: Este ejemplo ilustra la propiedad del constructor booleano.
html
<!DOCTYPE html> <html> <head> <title> JavaScript Boolean constructor Property </title> </head> <body style="text-align:center;"> <div> <h1 style="color: green;">GeeksforGeeks</h1> <p> JavaScript Boolean constructor Property returns the function that created the boolean's prototype: </p> <b id="GFG"></b> </div> <!-- Script to use boolean constructor --> <script> var bool = false; document.getElementById("GFG").innerHTML = bool.constructor; </script> </body> </html>
Producción:
Ejemplo 2: Este ejemplo ilustra la propiedad del constructor booleano.
html
<!DOCTYPE html> <html> <head> <title> JavaScript Boolean constructor Property </title> </head> <body style="text-align:center;"> <div> <h1 style="color: green;">GeeksforGeeks</h1> <p> JavaScript Boolean constructor Property returns the function that created the boolean's prototype: </p> <button onclick="gfg()">Click me</button> <p id="name"></p> </div> <!-- Script to use Boolean constructor Property --> <script> function gfg(){ var bool = false; document.getElementById("name").innerHTML = bool.constructor; } </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con la propiedad del constructor booleano de JavaScript se enumeran a continuación:
- Google Chrome 1 y superior
- Internet Explorer 3 y superior
- Mozilla Firefox 1 y superior
- Safari 1 y superior
- Ópera 4 y superior
Publicación traducida automáticamente
Artículo escrito por AdeshSingh1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA