ES6 Map & Set part 2
ES6 Set A Set object can be used to hold unique values (no repetitions are allowed). A value in a set can be anything (objects and primitive values). The syntax new Set([iterable]) creates a Set object where iterable is an array or any other iterable object of values. The size property returns the number of distinct values in a set. For example: let set = new Set ([1, 2, 4, 2, 59, 9, 4, 9, 1]); console.log(set.size); // 5 Try It Yourself Methods add(value) Adds a new element with the given value to the Set. delete(value) Deletes a specified value from the set. has(value) Returns true if a specified value exists in the set and false otherwise. clear() Clears the set. values() Returns an Iterator of values in the set. For example: let set = new Set(); set. add (5). add (9). add (59). add (9); console.log(set. has (9)); for (let v of set. values...


Comments
Post a Comment