superSet
Checks if the first iterable is a superset of the second one, excluding duplicate values.
- Use the
new Set()
constructor to create a newSet
object from each iterable. - Use
Array.prototype.every()
andSet.prototype.has()
to check that each value in the second iterable is contained in the first one.