JavaScript 中的 TypedArray.slice() 函数


typed array 对象的 slice() 方法返回数组缓冲区的一部分或块(作为一个单独的对象)。它接受两个整数参数,表示要返回的数组部分的开始和结束。

语法

语法如下

arrayBuffer.slice(3, 8)

范例

 动态演示

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var typedArray = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
      document.write("Contents of the typed array: "+typedArray);
      document.write("<br>");
      var resultantArray = typedArray.slice(2, 7);
      document.write("Resultant Array: "+resultantArray);
   </script>
</body>
</html>

输出

Contents of the typed array: 11,5,13,4,15,3,17,2,19,8
ResultantArray: 13,4,15,3,1

更新时间:2020 年 6 月 25 日

69 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告