在數組中使用insertBefore方法可以向數組中的特定位置插入一個新元素。具體步驟如下:
示例代碼如下:
let array = [1, 2, 3, 4, 5]; let index = 2; let element = 10; array.splice(index, 0, element); console.log(array); // [1, 2, 10, 3, 4, 5]
在上面的示例中,我們將元素10插入到索引為2的位置,通過splice方法在該位置插入新元素。
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529