🎶 Sym - 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台

📕 思源笔记 - 一款桌面端笔记应用,支持 Windows、Mac 和 Linux

🎸 Solo - B3log 分布式社区的博客端节点,欢迎加入下一代社区网络

♏ Vditor - 一款浏览器端的 Markdown 编辑器

Array - unionWith

2019-06-24

描述

返回两个数组中的所有元素,且进过提供的对比函数比对后相等的元素只能存在一个。

提示

  • 使用 Array.prototype.findIndex() 过滤出对比函数中不存在的值
  • 创建一个 Set,包含数组 a 中的所有元素及步骤一中的结果
  • 将最终的 Set 使用 Array.from 转换为数组并返回

代码

const unionWith = (a, b, comp) =>
  Array.from(new Set([...a, ...b.filter(x => a.findIndex(y => comp(x, y)) === -1)]));

示例

返回两个数组中四舍五入后唯一的元素:

unionWith([1, 1.2, 1.5, 3, 0], [1.9, 3, 0, 3.9], (a, b) => Math.round(a) === Math.round(b)); // [1, 1.2, 1.5, 3, 0, 3.9]

返回总目录

每天 30 秒系列之 JavaScript 代码


欢迎注册黑客派社区,开启你的博客之旅。让学习和分享成为一种习惯!

留下你的脚步