Set:
*
Set
*
Checking if a value exist in a set
To check if a given value exists in a set, use .has() method:
mySet.has(someVal);
Will return true if someVal appears in the set, false otherwise.