添加一個或多個元素至陣列的末端,並且回傳陣列的新長度
Ex:
var number = [1, 2, 3, 4, 5]; number.push(6, 7, 8); 印出:[1, 2, 3, 4, 5, 6, 7, 8]