A continuación se muestra el ejemplo de la propiedad Array length .
- Ejemplo: este ejemplo devuelve la longitud de la array.
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>
JavaScript Array length Property
</
title
>
<
style
>
body {
text-align: center;
}
h1 {
color: green;
}
</
style
>
</
head
>
<
body
>
<
h1
>GeeksforGeeks</
h1
>
<
h2
>
JavaScript Array length Property
</
h2
>
<
button
onclick
=
"array()"
>
Click Here!
</
button
>
<
p
id
=
"gfg"
></
p
>
<!-- Script to return the length of array -->
<
script
>
function array() {
var colors = ["green", "blue", "red",
"yellow", "black", "white" ];
document.getElementById("gfg").innerHTML
= colors.length;
}
</
script
>
</
body
>
</
html
>
- Producción:
La propiedad de longitud de array en JavaScript se usa para establecer o devolver la cantidad de elementos en una array.
Sintaxis:
- Se utiliza para establecer la longitud de la array.
array.length = number
- Devuelve la longitud de la array.
array.length
Valor devuelto: Devuelve un valor numérico, que indica el número de elementos en el objeto de array.
Más códigos de ejemplo para la propiedad anterior son los siguientes:
Programa 1:
<script type = "text/javascript"> var arr = new Array( "Geeks", "for", "Geeks"); document.write("arr.length:" + arr.length); </script>
Producción:
arr.length:3
Programa 1:
<script type = "text/javascript"> var arr = new Array( 5, 10, 15); document.write("arr.length:" + arr.length); </script>
Producción:
arr.length:3
Navegadores compatibles: los navegadores compatibles con la propiedad de longitud de array de JavaScript se enumeran a continuación:
- Google Chrome 1 arriba
- 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 riarawal99 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA