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

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

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

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

Array - intersection

2019-05-09

描述

返回两个数组中都存在的元素列表。

提示

  • 从数组 b 中创建一个 Set
  • 使用 Set.prototype​.has() 判断是否存在相同的值
  • 对数组 a 使用 Array.prototype.filter() 来保留 b 中也存在的元素

代码

const intersection = (a, b) => {
  const s = new Set(b);
  return a.filter(x => s.has(x));
};

示例

返回两个数组中相同的元素:

intersection([1, 2, 3], [4, 3, 2]); // [2, 3]

返回总目录

每天 30 秒系列之 JavaScript 代码


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

留下你的脚步