Checking if a value exist in a set
suggest changeTo 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.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents