typedArray.toString () es una función incorporada en JavaScript que se usa para convertir el contenido de tyepdArray en una string.
Sintaxis:
typedarray.toString()
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: Devuelve una string que representa los elementos del typedArray.
Código #1:
<script> // Constructing a new typedArray Uint8Array() object const A = new Uint8Array([5, 10, 15, 20, 25, 30, 35]); // Converting the elements of typedArray // object into string const B = A.toString(); // Printing converted string document.write(B); </script>
Producción:
5,10,15,20,25,30,35
Código #2:
<script> // Constructing a new typedArray Uint8Array() object const A = new Uint8Array(["gfg", "CSE", "GeeksForGeeks"]); // Converting the elements of typedArray // object into string const B = A.toString(); // Printing converted string document.write(B); </script>
Producción:
0,0,0
Aquí la salida es cero porque el contenido de typedArray debe ser un número, no una string.