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 forEach() function of TypedArray object accepts a string value representing the name of a function and executes it per every element in the array.

Syntax

Its Syntax is as follows

typedArray.forEach()

Example

Live Demo

<html>
   <head>
      <title>JavaScript Array every Method</title>
   </head>
   <body>
      <script type="text/javascript">
         var int32View = new Int32Array([21, 19, 65,21, 14, 66, 87, 55 ]);
         document.write("Contents of the typed array: "+int32View);
         document.write("<br>");
         document.write("Result: ");
         function testResult(element, index, array) {
            document.writeln(element+100);
         }
         int32View.forEach(testResult);
         //document.write("Result: "+result);
      </script>
   </body>
</html>

Output

Contents of the typed array: 21,19,65,21,14,66,87,55
Result: 121 119 165 121 114 166 187 155 

Advertisements

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