當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Javascript typedArray.sort()用法及代碼示例


typedArray.sort()是JavaScript中的內置函數,用於對給定typedArray的元素進行排序,並返回帶有排序後元素的新typedArray。句法:

typedArray.sort();

參數:它不接受任何參數。
返回值:它返回帶有排序元素的新typedArray。
JavaScript代碼顯示上述函數的工作方式:

<script> 
  
// 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 
document.write(a + "<br>"); 
document.write(b + "<br>"); 
document.write(c + "<br>"); 
document.write(d + "<br>"); 
  
</script>

輸出:

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() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。