このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の append関数を説明します。
append()
説明文
注意: 非推奨
append() は非推奨であり、p5の将来のバージョンで削除される予定です。代わりに array.push(value) を使用してください。
配列の最後に値を追加します。配列の長さを1だけ拡張します。
構文
append(array, value)
パラメタ
-
array
Array:追加する配列 -
value
Any:配列に追加する値
戻り値
配列:追加された配列
例
function setup() {
let myArray = ['Mango', 'Apple', 'Papaya'];
print(myArray); // ['Mango', 'Apple', 'Papaya']
append(myArray, 'Peach');
print(myArray); // ['Mango', 'Apple', 'Papaya', 'Peach']
}
著作権
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) に従います。