Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Array.prototype.reverse()

概要

配列の要素を反転させます。最初の要素は最後に、最後の要素は最初になります。

構文

Array.reverse()

引数

無し

説明

reverse メソッドは呼び出した配列オブジェクトの要素をその場で反転させ、配列を書き換えます。

例: 配列の要素を反転させる

3 つの要素を持つ配列 myArray を生成し、その後配列を反転させる例を以下に示します。

var myArray = ["壱", "弐", "参"];
myArray.reverse();

このコードは myArray を次のように変化させます。

  • myArray[0] は "参" に
  • myArray[1] は "弐" に
  • myArray[2] は "壱" に

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: teoli, ethertank, Mgjbot, Yuichirou
 最終更新者: teoli,