Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ways to create a Set in JavaScript?

Tags:

javascript

set

In Eloquent JavaScript, Chapter 4, a set of values is created by creating an object and storing the values as property names, assigning arbitrary values (e.g. true) as property values. To check if the value is already contained in the set, the in operator is used:

var set = {};  if (!'Tom' in set) {    set.Tom = true; } 

Is this idiomatic JavaScript? Wouldn't be using an array even better?

var set = [];  if (!'Tom' in set) {    set.push = 'Tom'; } 
like image 292
helpermethod Avatar asked Dec 02 '11 22:12

helpermethod


People also ask

What is the only way to create a new Set object?

Constructor. Creates a new Set object.

What is Set () in JavaScript?

A set is a collection of items which are unique i.e no element can be repeated. Set in ES6 are ordered: elements of the set can be iterated in the insertion order. Set can store any types of values whether primitive or objects.

What is Set in ES6?

A set is a data structure that allows you to create a collection of unique values. Sets are the collections that deal with single objects or single values. Set is the collection of values similar to arrays, but it does not contain any duplicates.

What is Set constructor in JavaScript?

The Set constructor lets you create Set objects that store unique values of any type, whether primitive values or object references.


1 Answers

Sets are now available in ES2015 (aka ES6, i.e. ECMAScript 6). ES6 has been the current standard for JavaScript since June 2015.

ECMAScript 6 has the data structure Set which works for arbitrary values, is fast and handles NaN correctly. -Axel Rauschmayer, Exploring ES6

First two examples from Axel Rauschmayer's book Exploring ES6:

Managing single elements:

> let set = new Set(); > set.add('red')  > set.has('red') true > set.delete('red') true > set.has('red') false 

Determining the size of a Set and clearing it:

> let set = new Set(); > set.add('red') > set.add('green')  > set.size 2 > set.clear(); > set.size 0 

I would check out Exploring ES6 if you want to learn more about Sets in JavaScript. The book is free to read online, but if you would like to support the author Dr. Axel Rauschmayer you can purchase the book for around $30.

If you want to use Sets and ES6 now you can use Babel, the ES6 to ES5 transpiler, and its polyfills.

Edit: As of June 6th, 2017 most of the major browsers have full Set support in their latest versions (except IE 11). This means you may not need babel if you don't care to support older browsers. If you want to see compatibility in different browsers including your current browser check Kangax's ES6 compatibility table.

EDIT:

Just clarification on initialization. Sets can take any synchronous iterable in their constructor. This means they can take not just arrays but also strings, and iterators. Take for example the following array and string initialization of a set:

const set1 = new Set(['a','a','b','b','c','c']);  console.log(...set1);  console.log(set1.size);  const set2 = new Set("aabbcc");  console.log(...set2);  console.log(set2.size);

Both outputs of the array and string are the same. Note that ...set1 is the spread syntax. It appears that each element of the iterable is added one by one to the set, so since both the array and string have the same elements and since the elements are in the same order the set is created the same. Another thing to note about sets is when iterating over them the iteration order follows the order that the elements were inserted into the set. Here's an example of iterating over a set:

const set1 = new Set(['a','a','b','b','c','c']);  for(const element of set1) {    console.log(element);  }

Since you can use any iterable to initialize a set you could even use a iterator from a generator function. Here is two such examples of iterator initializations that produce the same output:

// a simple generator example  function* getLetters1 () {    yield 'a';    yield 'a';    yield 'b';    yield 'b';    yield 'c';    yield 'c';  }    // a somewhat more commonplace generator example  // with the same output as getLetters1.  function* getLetters2 (letters, repeatTimes) {    for(const letter of letters) {      for(let i = 0; i < repeatTimes; ++i) {         yield letter;      }    }  }    console.log("------ getLetters1 ------");  console.log(...getLetters1());  const set3 = new Set(getLetters1());  console.log(...set3);  console.log(set3.size);    console.log("------ getLetters2 ------");  console.log(...getLetters2('abc', 2));  const set4 = new Set(getLetters2('abc', 2));  console.log(...set4);  console.log(set4.size);

These examples' generator functions could just be written to not repeat, but if the generator function is more complicated and as long as the following doesn't impact performance too negatively you could use the Set method to help get only values from a generator that don't repeat.

If you want to know more about sets without reading Dr. Rauschmayer's chapter of his book you can check out the MDN docs on Set. MDN also has more examples of iterating over a set such as using forEach and using the .keys, .values, and .entries methods. MDN also has examples such as set union, set intersection, set difference, symmetric set difference, and set superset checking. Hopefully most of those operations will become available in JavaScript without needing to build your own functions supporting them. In fact, there is this TC39 proposal for new Set methods which should hopefully add the following methods to Set in JavaScript at some future point in time if the proposal reaches stage 4:

  • Set.prototype.intersection(iterable) - method creates new Set instance by set intersection operation.
  • Set.prototype.union(iterable) - method creates new Set instance by set union operation.
  • Set.prototype.difference(iterable) - method creates new Set without elements present in iterable.
  • Set.prototype.symmetricDifference(iterable) - returns Set of elements found only in either this or in iterable.
  • Set.prototype.isSubsetOf(iterable)
  • Set.prototype.isDisjointFrom(iterable)
  • Set.prototype.isSupersetOf(iterable)
like image 163
John Avatar answered Oct 12 '22 16:10

John