Created by James Drummond
over 9 years ago
|
||
Every item in a set is guaranteed to be unique - an item will not be added to a set if it already exists.So you don't have to iterate every element of an array to see if it exists.var collection = new Set([1, 2, 3, 4, 5]);var newElements = [4, 8, 10]; for(var i = 0; i collection.add(newElements[i]);}
Useful methods and properties Set.prototype.size - size of the set Set.prototype.constructor() - Takes array or other iterable as argument Set.prototype.add(value) - add an item to the set Set.prototype.delete(value) - delete an item from the set Set.prototype.has(value) - see if an item exists in the set Set.prototype.clear() - remove all elements from the set Set.prototype.forEach() - Iterate over the items of a set in insertion order Set.prototype.entries() - Obtain an iterator to loop through the set's elements Set.prototype.values() - returns an iterator object containing the values of the elements of the set
Want to create your own Notes for free with GoConqr? Learn more.