このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の reverse関数を説明します。
reverse()
説明文
注意: 非推奨
reverse() は非推奨であり、p5の将来のバージョンで削除される予定です。代わりにarray.reverse() を使用してください。
配列の順序を逆にします。
構文
reverse(list)
パラメタ
- list
Array:反転する配列
戻り値
Array:反転した配列
例1
function setup() {
let myArray = ['A', 'B', 'C'];
print(myArray); // ['A', 'B', 'C']
reverse(myArray);
print(myArray); // ['C', 'B', 'A']
}
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。