JavaScript | typedArray.fill()

typedArray.fill () es una función incorporada en JavaScript que se usa para completar un valor en typedArray desde el índice inicial hasta el índice final.
Sintaxis:

typedarray.fill(value, start, end)

Parámetros: Se necesitan tres parámetros que se especifican a continuación:

  • valor: Es el valor para llenar con la array escrita.
  • start: Es el índice de inicio, opcional y su valor por defecto es 0.
  • end: Es el índice final, opcional y no incluido. Su valor predeterminado es la longitud de typedArray.
  • Valor devuelto: Devuelve el array modificado.
    Código JavaScript para mostrar el funcionamiento de esta función:

    // Javascript to illustrate typedArray.fill()
    <script>
      
       // Creating some typedArrays
       const A = new Uint8Array([ 0, 0, 0, 0 ]);
       const B = new Uint8Array([ 0, 0, 0, 0 ]);
       const C = new Uint8Array([ 0, 0, 0, 0 ]);
       const D = new Uint8Array([ 0, 0, 0, 0 ]);
      
       // Calling fill() function to fill different values
       a = A.fill(4, 1, 3);
       b = B.fill(5, 1);
       c = C.fill(3);
       d = D.fill(4, 0, 0);
      
       // Printing modified array
       document.write(a +"<br>");
       document.write(b +"<br>");
       document.write(c +"<br>");
       document.write(d +"<br>");
         
    </script>
    

    Producción:

    0,4,4,0
    0,5,5,5
    3,3,3,3
    0,0,0,0

    Publicación traducida automáticamente

    Artículo escrito por ShivamKD y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

    Deja una respuesta

    Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *