Rellena el rango dado de elementos de la array con el valor dado.
Sintaxis:
arr.fill(value[, start[, end]])
Parámetros:
- Valor:- Valor a rellenar.
- Inicio: – Índice de inicio (incluido) y su valor predeterminado es 0.
- Fin: índice final (excluido) y su índice predeterminado es this.length.
Valor devuelto: Devuelve
el array modificado.
Compatibilidad con el navegador:
aquí, en la segunda columna de valores int, se encuentra la versión del navegador de funciones correspondiente.
<script> // input array contain some elements. var array = [ 1, 2, 3, 4 ]; // Here array.fill function fills with 0 // from position 2 till position 3. console.log(array.fill(0, 2, 4)); </script>
Producción:
> Array [1, 2, 0, 0]
Programa 2:
Veamos el programa JavaScript:
<script> // input array contain some elements. var array = [ 1, 2, 3, 4 ]; // Here array.fill function fill with // 9 from position 2 till end. console.log(array.fill(9, 2)); </script>
Producción:
> Array [1, 2, 9, 9]
Programa 3:
Veamos el programa JavaScript:
<script> // input array contain some elements. var array = [ 1, 2, 3, 4 ]; // Here array.fill function fill with // 6 from position 0 till end. console.log(array.fill(6)); </script>
Producción:
> Array [6, 6, 6, 6]
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA