Adds an item to the set.
add(item)
item
The item to add to the set.
The same set.
let set = new Set() set.add("hello") set.has("hello")
true