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


JavaScript typedArray.reverse()用法及代码示例


typedArray.reverse() 是 JavaScript 中的内置函数,用于反转给定的 typedArray 元素,即第一个元素变为最后一个元素,反之亦然。

用法:

typedArray.reverse();

参数:它不接受任何参数。返回值:它返回新的反向类型数组。

Example:

javascript


// Creating some typedArrays with some elements 
const A = new Uint8Array([ 1, 2, 3, 4, 5, 6 ]); 
const B = new Uint8Array([ 5, 10, 15, 20 ]); 
const C = new Uint8Array([ 2, 4, 6, 8, 10 ]); 
const D = new Uint8Array([ 1, 3, 5, 7 ]); 
const E = new Uint8Array(); 
  
// Calling reverse() function on the above typedArray 
a = A.reverse(); 
b = B.reverse(); 
c = C.reverse(); 
d = D.reverse(); 
e = E.reverse(); 
  
// Printing the reversed typedArray 
console.log(a); 
console.log(b); 
console.log(c); 
console.log(d); 
console.log(e);

输出:

6, 5, 4, 3, 2, 1
20, 15, 10, 5
10, 8, 6, 4, 2
7, 5, 3, 1

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript typedArray.reverse() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。