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


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


TypedArray 對象的 map() 函數接受函數名,並在類型化數組的每個元素上調用它並返回結果。

用法

其語法如下

typedArray.map()

示例

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var int32View = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
      document.write("Contents of the typed array:"+int32View);
      document.write("<br>");
      function square(ele) {
         return ele*ele;
      }
   var result = int32View.map(square);
   document.write("Specified element occurred at the index:"+result);
</script>
</body>
</html>

輸出

Contents of the typed array:11,5,13,4,15,3,17,2,19,8
Specified element occurred at the index:121,25,169,16,225,9,289,4,361,64

相關用法


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