A continuación se muestra el ejemplo de la propiedad del constructor Array .
- Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> JavaScript Array constructor Property </title> </head> <body style="text-align: center;"> <h1 style="color: green;"> GeeksforGeeks </h1> <b>JavaScript | Array constructor Property</b> <br> <button onclick="myGeeks()"> Submit </button> <p id="sudo"></p> <!-- Script for array constructor --> <script> function myGeeks() { var name = ["sahil", "Manas", "Sagar", "Harshit"]; document.getElementById("sudo").innerHTML = name.constructor; } </script> </body> </html>
- Producción:
La propiedad del constructor Array de JavaScript se utiliza para devolver la función constructora de un objeto de array. Solo devuelve la referencia de la función y no devuelve el nombre de la función. Entonces, en las arrays de JavaScript, devuelve la función Array() { [código nativo] }.
Sintaxis:
array.constructor
Valor devuelto: Devuelve la referencia de la función, es decir, la función Array() { [código nativo] }.
Más códigos de ejemplo para la propiedad anterior son los siguientes:
Programa 1:
html
<script type = "text/javascript"> var arr = new Array( "Geeks", "for", "Geeks"); document.write("arr.constructor:" + arr.constructor); </script>
Producción:
arr.constructor:function Array() { [native code] }
Programa 2:
html
<script type = "text/javascript"> var arr = new Array( 5, 10, 15); document.write("arr.constructor:" + arr.constructor); </script>
Producción:
arr.constructor:function Array() { [native code] }
Navegadores admitidos: los navegadores admitidos por JavaScript Array constructor Property se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Firefox 1 y superior
- Internet Explorer 4 y superior
- Ópera 4 y superior
- Safari 1 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA