编写一个js算法,用一次循环将数组中出现2次或者以上的值删掉 题目描述 var arr = 1, 2, 4, 1, 5, 5; 最终返回:2, 4 自己的CODE javascript const removeDuplicates = (newAr