我想操作一個for循環內的數組,我想在該數組的末尾添加一個項目,並在數組的開頭刪除一個元素,像這樣:函數shift()在循環內不起作用
var internal = new Array();
for(var i = 0; i < 1000; i++) {
internal[i] = Math.floor(Math.random() * 37);
internal.shift();
console.log(internal.length);
}
的問題是,它看起來像移()循環內不工作,事實上,沒有元素從陣列中刪除!
有沒有解決方案?
這裏JsFiddle
非常感謝您! – Lughino
@Laughino歡迎您:) – thefourtheye