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


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


typedArray.slice() 是 JavaScript 中的內置函數,用於返回給定 typedArray 的部分元素。

typedArray.slice(begin, end)

參數:它需要兩個參數,如下所示-

  • begin:它是開始索引,也可以是負數。
  • end:它是結束索引,這裏切片提取直到但不包括結束索引的元素。

返回值:它返回一個新的 typedArray,其中包含提取的元素。

例子:JavaScript 代碼顯示此函數的工作原理。

javascript


// Creating some typedArray containing same values 
const A = new Uint8Array([ 5, 10, 15, 20, 25 ]); 
const B = new Uint8Array([ 5, 10, 15, 20, 25 ]); 
const C = new Uint8Array([ 5, 10, 15, 20, 25 ]); 
const D = new Uint8Array([ 5, 10, 15, 20, 25 ]); 
const E = new Uint8Array([ 5, 10, 15, 20, 25 ]); 
const F = new Uint8Array([ 5, 10, 15, 20, 25 ]); 
  
// Calling slice function with starting and ending index 
var a = A.slice(1, 2); 
var b = B.slice(0, 3); 
var c = C.slice(4); 
var d = D.slice(0 
  
// Here index is negative so it extract element 
// from the end of the typedArray 
var e = E.slice(-2); 
var f = F.slice(); 
  
// Printing the extracted arrays 
console.log(a); 
console.log(b); 
console.log(c); 
console.log(d); 
console.log(e); 
console.log(f);

輸出:

10
5,10,15
25
5,10,15,20,25
20,25
5,10,15,20,25

相關用法


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