关于 js中 数组删除 和替换的例子(splice 和 slice)(w3cschool)

splice() 方法例子

例子 1

在本例中,我们将创建一个新数组,并向其添加一个元素:

输出:

George,John,Thomas,James,Adrew,Martin
George,John,William,Thomas,James,Adrew,Martin

例子 2

在本例中我们将删除位于 index 2 的元素,并添加一个新元素来替代被删除的元素:

输出:

George,John,Thomas,James,Adrew,Martin
George,John,William,James,Adrew,Martin

例子 3

在本例中我们将删除从 index 2 ("Thomas") 开始的三个元素,并添加一个新元素 ("William") 来替代被删除的元素:

输出:

George,John,Thomas,James,Adrew,Martin
George,John,William,Martin
 
  
slice()方法例子

输出:

George,John,Thomas
John,Thomas
George,John,Thomas

例子 2

在本例中,我们将创建一个新数组,然后显示从其中选取的元素:

输出:

George,John,Thomas,James,Adrew,Martin
Thomas,James
George,John,Thomas,James,Adrew,Martin

你可能感兴趣的:(关于 js中 数组删除 和替换的例子(splice 和 slice)(w3cschool))