我想從使用切片的數組中刪除一個元素,但是我無法讓它工作,請看這段代碼。從數組中刪除元素,使用切片
console.log(this.activeEffects); // Prints my array
console.log(this.activeEffects.slice(0,1)); // Remove from index 0, and remove one.
console.log(this.activeEffects); // Prints array again, this time my element should be gone
結果是這樣的。
那麼,什麼是充分利用這一點,在第一個數組是完整的,因爲它應該是。然後,它打印什麼是數組的切片。最後第三個應該是空的?要麼?
有可能使的jsfiddle這個? – 2012-08-07 14:50:31
你確定這是一個數組嗎? – 2012-08-07 14:51:52