js用Set实现数组去重 2020-09-04 本文已影响0人 KK_boy function dedupe(array) { return Array.from(new Set(array)); } dedupe([1, 1, 2, 3]) // [1, 2, 3]