Computer >> Máy Tính >  >> Lập trình >> Javascript

Hàm TypedArray.forEach () trong JavaScript

Hàm forEach () của đối tượng TypedArray chấp nhận một giá trị chuỗi đại diện cho tên của một hàm và thực thi nó trên mỗi phần tử trong mảng.

Cú pháp

Cú pháp của nó như sau

typedArray.forEach()

Ví dụ

<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>

Đầu ra

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