このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の shoeten関数を説明します。
shorten()
説明文
注意: 非推奨
shorten() は非推奨であり、p5の将来のバージョンで削除される予定です。代わりにarray.pop() を使用してください。
配列を1要素だけ減らし、短縮された配列を返します。
構文
shorten(list)
パラメタ
- list
Array:短縮する配列
戻り値
Array:短縮された配列
例1
function setup() {
let myArray = ['A', 'B', 'C'];
print(myArray); // ['A', 'B', 'C']
newArray = = short(myArray);
print(myArray); // ['A', 'B', 'C']
print(newArray); // ['A', 'B']
}
著作権
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) に従います。