Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

1 Answer
Samual Sam

The toString() function of the TypedArray object returns a string representing the contents of the typed array.

Syntax

Its Syntax is as follows

typedArray.toString();

Example

Live Demo

<html>
   <head>
      <title>JavaScript Example</title>
   </head>
   <body>
      <script type="text/javascript">
         var typedArray = new Int32Array([111, 56, 62, 40, 75, 36, 617, 2, 139, 827 ]);
         var result = typedArray.toString();
         document.write("Contents of the typed array: "+result);
      </script>
   </body>
</html>

Output

Contents of the typed array: 111,56,62,40,75,36,617,2,139,827

Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.