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


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


typedArray.reverse()是JavaScript中的內置函數,用於反轉給定的typedArray元素,即第一個元素變為最後一個,反之亦然。句法:

typedArray.reverse();

參數:它不接受任何參數。
返回值:它返回新的反向typedArray。
JavaScript代碼顯示此函數的工作方式:

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

輸出:

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


相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | typedArray.reverse() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。