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


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


typedArray.sort() 是 JavaScript 中的内置函数,用于对给定 typedArray 的元素进行排序,并返回带有排序元素的新 typedArray。

用法:

typedArray.sort();

参数:它不接受任何参数。

返回值:它返回带有已排序元素的新 typedArray。

例子:

javascript


// Creating some typedArrays with some elements 
const A = new Uint8Array([ 5, 9, 1, 0, 45, 2 ]); 
const B = new Uint8Array([ 22, 9, 1, 20 ]); 
const C = new Uint8Array([ 5, 9, 0, 3, 1 ]); 
const D = new Uint8Array([ 1, 3, 100, 42, 4 ]); 
  
// Calling sort() function on the above typedArray 
a = A.sort(); 
b = B.sort(); 
c = C.sort(); 
d = D.sort(); 
  
// Printing the sorted typedArray 
console.log(a); 
console.log(b); 
console.log(c); 
console.log(d);

输出:

0, 1, 2, 5, 9, 45
1, 9, 20, 22
0, 1, 3, 5, 9
1, 3, 4, 42, 100

相关用法


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