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


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


類型化數組對象的 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

相關用法


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