TypedArray.forEach() 函数在 JavaScript 中


TypedArray 对象的 forEach() 函数接受一个表示函数名称的字符串值,并对数组中的每个元素执行该函数。

语法

其语法如下

typedArray.forEach()

示例

 在线演示

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

输出

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

更新于:25-06-2020

36 次浏览

开启你的职业生涯

完成课程,获得认证

开始学习
广告