效果:
const arr = [1, 1, '1', 17, true, true, false, false, 'true', 'a', {}, {}];
// => 输出结果:[1, '1', 17, true, false, 'true', 'a', {}, {}]
方法:
const res1 = Array.from(new Set(arr));
效果:
const arr = [1, 1, '1', 17, true, true, false, false, 'true', 'a', {}, {}];
// => 输出结果:[1, '1', 17, true, false, 'true', 'a', {}, {}]
方法:
const res1 = Array.from(new Set(arr));
本文标题:数组去重
本文链接:https://www.haomeiwen.com/subject/gyxjpktx.html
网友评论