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 keys() function of typedArray object is similar to entries but, it returns an iterator object containing the indices of the typed array.

Syntax

Its Syntax is as follows

typedArray.keys()

Example

Live Demo

<html>
   <head>
      <title>JavaScript Array every Method</title>
   </head>
   <body>
      <script type="text/javascript">
         var int32View = new Int32Array([21, 64, 89, 65, 33, 66, 87, 55]);
         document.write("Contents of the typed array: "+int32View);
         document.write("<br>");
         var it = int32View.keys();
         for(i=0; i<int32View.length; i++) {
            document.writeln(it.next().value);
         }
      </script>
   </body>
</html>

Output

Contents of the typed array: 21,64,89,65,33,66,87,55
0 1 2 3 4 5 6 7

Advertisements

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