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


Javascript typedArray.slice()用法及代码示例


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