1.删除数组的重复项 第一种方式 var fruits = ['banana', 'apple', 'orange', 'apple', 'orange', 'grape', 'watermelon'] var uniqueFruits = new Set(fruits) console.log(uniqueFruits); // Set {'banana', 'apple', 'orange', 'grape', 'watermelon'} var uniqueFruits = Array.f…