小程式中push()方法可在陣列的末端新增一個或多個元素,並傳回新的長度。 push遇到數組參數時,把整個數組參數當作一個元素。
語法
arrayObject.push(newelement1,newelement2,....,newelementX)
push和concat二者功能很相像:
var arr = []; arr.push(1); arr.push(2); arr.push([3, 4]) arr.push(5, 6); arr = arr.concat(7); arr = arr.concat([8, 9]); arr = arr.concat(10, 11); for(var i in arr){ console.log(i+"-----"+arr[i]); }
列印結果如下:
index.js [sm]: 180 0-----1
index.js [sm]:180 1-----2
index.js [sm]:180 2-----3 ,4
index.js [sm]:180 3-----5
index.js [sm]:180 4-----6
index.js [sm]:180 5-----7
index.js [sm]:180 6-----8
index.js [sm]:180 7-----9
index.js [sm]:180 8-----10
#index.js [sm]:180 9-----11
推薦:《小程式開發教學》
以上是小程式push怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!