pop

メソッド Type method
末尾の配列要素 = 配列オブジェクト.pop() Form at the end of array elements = array object. Pop ()
Commentary
末尾の配列要素を取り出します。 Remove the array element at the end.
サンプルコード Sample code
myAry1 = new Array(12,34,"AB","CD"); myAry1 = new Array (12,34, "AB", "CD");
n = myAry1.pop(); n = myAry1.pop ();
outputs[0] = n; outputs [0] = n;