You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 5, 2025. It is now read-only.
// // Appends value to the Set object. Returns the Set object with added value.
// clear()
// // Removes all elements from the Set object.
// delete(value)
// // Removes the element associated to the value and returns a boolean asserting whether an element was successfully removed or not. has(value) will return false afterwards.
// has(value)
// // Returns a boolean asserting whether an element is present with the given value in the Set object or not.
// values()
// // Returns a new iterator object that yields the values for each element in the Set object in insertion order. (For Sets, this is the same as the keys() method.)