JavaScript Set 메서드 중 set.intersection(otherSet)의 동작으로 올바른 것은?
보통 MDN Web Docs해설
Set.prototype.intersection()은 두 Set에 모두 포함된 요소만 담은 새로운 Set을 반환합니다. union(), difference(), symmetricDifference(), isSubsetOf() 등과 함께 도입되어, 수학적 집합 연산을 네이티브로 수행할 수 있게 되었습니다.