typedArray.of () es una función incorporada en JavaScript que se usa para construir una nueva typedArray con un número variable de parámetros.
Sintaxis:
TypedArray.of(element0, element1, ......)
Parámetros: Acepta parámetros de diferentes elementos cuyo typedArray se va a crear.
Valor devuelto: Devuelve la nueva instancia typedArray.
Código JavaScript para mostrar el funcionamiento de esta función:
<script> // Printing the new typedArray with the given elements with // the parameters of typedArray.of() function. document.write(Uint8Array.of(5, 9, 1, 0, 45, 2) + "<br>"); document.write(Uint8Array.of(22, 9, 1, 20) + "<br>"); document.write(Uint8Array.of(5, 9, 0, 3, 1) + "<br>"); document.write(Uint8Array.of(undefined) + "<br>"); </script>
Producción:
5, 9, 1, 0, 45, 2 22, 9, 1, 20 5, 9, 0, 3, 1 0
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