splice的用法,举例说明
时间: 2024-06-10 11:08:40 浏览: 168
举例详解Python中的split()函数的使用方法
splice()方法用于添加或删除数组中的元素。它可以在指定的索引位置添加或删除元素,并返回被删除的元素。splice()方法接受三个参数:index,howmany和item1,...itemX。其中,index表示要操作的起始索引位置,howmany表示要删除的元素个数(如果为0,则表示不删除元素),item1,...itemX表示要添加的元素。
举个例子:
let arr = ["one", "two", "three","four", "five"];
arr.splice(2, 1); // 删除从索引2开始的1个元素
console.log(arr); // 输出["one","two","four","five"]
arr.splice(2, 0, "hello", "world"); // 从索引2开始添加"hello"和"world"
console.log(arr); // 输出["one", "two", "hello", "world", "four", "five"]
阅读全文