当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。