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


JavaScript TypedArray.set()用法及代码示例


TypedArray 对象的 set() 函数接受一个表示索引的数字的数组,并将指定数组的内容复制到从给定索引开始的当前数组中。

用法

其语法如下

typedArray.set()

示例

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var typedArray1 = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
      document.write("Contents of the typed array:"+typedArray1);
      document.write("<br>");
      var typedArray2 = new Int32Array([110, 215, 316, 916, 616, 117, 311 ]);
      typedArray1.set(typedArray2, 3);
      document.write("Result:"+typedArray1);
   </script>
</body>
</html>

输出

Contents of the typed array:11,5,13,4,15,3,17,2,19,8
Result:11,5,13,110,215,316,916,616,117,311

相关用法


注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 TypedArray.set() function in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。