typedArray.slice()是JavaScript中的內置函數,用於返回給定typedArray的部分元素。
typedArray.slice(begin, end)
參數:它采用下麵指定的兩個參數-
- begin:它是開始索引,也可以是負數。
- end:它是結束索引,此處slice提取直到但不包括結束索引的元素。
返回值:它返回一個包含提取元素的新typedArray。
JavaScript代碼顯示此函數的工作方式:
<script>
// 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
document.write(a +"<br>");
document.write(b +"<br>");
document.write(c +"<br>");
document.write(d +"<br>");
document.write(e +"<br>");
document.write(f);
</script>
輸出:
10 5,10,15 25 5,10,15,20,25 20,25 5,10,15,20,25
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 JavaScript | typedArray.slice() with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。