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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。