JavaScript | typedArray.includes() con ejemplos

typedArray.includes () es una función incorporada en JavaScript que se utiliza para verificar si un elemento en particular está incluido o no en el typedArray dado y, en consecuencia, devuelve verdadero y falso.
Sintaxis:

typedarray.includes(Element, Index);

Parámetros: Acepta dos parámetros que se especifican a continuación:

  • Elemento: Es el elemento que se busca en el typedArray.
  • Índice: Es el índice del elemento en el formulario typedArray donde debe comenzar la búsqueda. Su valor por defecto es cero (0) y es opcional.
  • Valor de retorno: devuelve un valor booleano verdadero si el elemento está presente en el typedArray dado; de lo contrario, devuelve falso.

    Código JavaScript para mostrar el funcionamiento de esta función:

    Código #1:

    <script>
      
        // Creating some typedArrays
        const A = new Uint8Array([ 1, 2, 3, 4, 5 ]);
        const B = new Uint8Array([ 5, 10, 15, 20 ]);
        const C = new Uint8Array([ 0, 2, 4, 6,, 8, 10 ]);
        const D = new Uint8Array([ 1, 3, 5, 7, 9 ]);
      
        // Calling include() function
        a = A.includes(2)
        b = B.includes(15, 1)
        c = C.includes(6)
        d = D.includes(9, 1)
      
        // Printing true or false, either the element
        // is present in the typedArray or not
        document.write(a + "<br>");
        document.write(b + "<br>");
        document.write(c + "<br>");
        document.write(d);
      
    </script>
    

    Producción:

    true
    true
    true
    true

    Código #2:

    <script>
      
        // Creating some typedArrays
        const A = new Uint8Array([ 1, 2, 3, 4, 5 ]);
        const B = new Uint8Array([ 5, 10, 15, 20 ]);
        const C = new Uint8Array([ 0, 2, 4, 6,, 8, 10 ]);
        const D = new Uint8Array([ 1, 3, 5, 7, 9 ]);
      
        // Calling include() function
        a = A.includes(6)
        b = B.includes(21, 1)
        c = C.includes(6, 4)
        d = D.includes(0)
      
        // Printing true or false, either the element
        // is present in the typedArray or not
        document.write(a + "<br>");
        document.write(b + "<br>");
        document.write(c + "<br>");
        document.write(d);
      
    </script>
    

    Producción:

    false
    false
    false
    false

    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

    Deja una respuesta

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