(配列) push 配列要素を追加します


書式
★.push(◆[,◆[,..◆]])
  ★=配列名
  ◆=追加データ
文例
myArray.push("ABC","DEF","GHI");
上位オブジェクト
Array
説明
配列の末尾にデータを追加します。

pop