當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript TypedArray.forEach()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 TypedArray.forEach() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。