在本例中,我们将创建一个新数组,并向其添加一个元素:
输出:
George,John,Thomas,James,Adrew,Martin George,John,William,Thomas,James,Adrew,Martin
在本例中我们将删除位于 index 2 的元素,并添加一个新元素来替代被删除的元素:
输出:
George,John,Thomas,James,Adrew,Martin
George,John,William,James,Adrew,Martin
在本例中我们将删除从 index 2 ("Thomas") 开始的三个元素,并添加一个新元素 ("William") 来替代被删除的元素:
输出:
George,John,Thomas,James,Adrew,Martin
George,John,William,Martin
slice()方法例子
输出:
George,John,Thomas John,Thomas George,John,Thomas
在本例中,我们将创建一个新数组,然后显示从其中选取的元素:
输出:
George,John,Thomas,James,Adrew,Martin Thomas,James George,John,Thomas,James,Adrew,Martin