移除数组 arr 中的所有值与 item 相等的元素,直接在给定的 arr 数组上进行操作,并将结果返回

移除数组 arr 中的所有值与 item 相等的元素,直接在给定的 arr 数组上进行操作,

并将结果返回





输入例子:
removeWithoutCopy([1, 2, 2, 3, 4, 2, 2], 2)

输出例子:
[1, 3, 4]


function removeWithoutCopy(arr, item) {
    for(var i=0;i



你可能感兴趣的:(javascript)