快速移除数组中的指定元素。(注意:数组必须是无序数组,移除操作会破坏数组原有的排序)
需要操作的数组。
要移除元素的位置索引。
无返回值,直接在原数组上修改。
let arr = [1, 2, 3, 4];arrRemove(arr, 1); // 移除索引为1的元素(2)console.log(arr); // 输出: [1, 4, 3] Copy
let arr = [1, 2, 3, 4];arrRemove(arr, 1); // 移除索引为1的元素(2)console.log(arr); // 输出: [1, 4, 3]
快速移除数组中的指定元素。(注意:数组必须是无序数组,移除操作会破坏数组原有的排序)