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


JavaScript TypedArray.reverse()用法及代碼示例


TypedArray 對象的 reverse() 函數反轉類型化數組的內容。

用法

其語法如下

typedArray.reverse()

示例

<html>
<head>
   <title>JavaScript Array every Method</title>
</head>
<body>
   <script type="text/javascript">
      var typedArray = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
      document.write("Contents of the typed array:"+typedArray);
      document.write("<br>");
      var result = typedArray.reverse(Math.sqrt);
      document.write("Contents of the reversed array:"+result);
   </script>
</body>
</html>

輸出

Contents of the typed array:11,5,13,4,15,3,17,2,19,8
Contents of the reversed array:8,19,2,17,3,15,4,13,5,11

相關用法


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