Map, Set Constructors

keep in mind...

  1. like objects, but can hold more things including functions
  2. they are directly iterable
  3. non-strings can be used as keys
Map()Set()

Maps and Sets (along with WeakMaps and WeakSets) were created to help solve issues with objects.

Map()

The Map object holds unique key/value pairs. Any value (both objects and primitive values) may be used as either a key or a value. Click here for a quick look at the properties and methods.

creation

To create a new map, use new Map([iterable]). Iterable can be an array or any iterable object whose elements are key/value pairs. You can even throw a tuple in there!

edit and re-run!
const tuple = [['carlos', 'piano'],['nicolas', 'saxophone'], ['william', 'violin']];
const map = new Map(tuple);
console.log(map.get('carlos'));
piano

reliable orderOne switch from objects is that Map objects iterate elements in insertion order, reliably. When using a for/in loop, you can't be 100% sure your keys will be in order, as the Objects aren't required to iterate in order. Seems like they do most of the time, but Maps eliminate that doubt.

directly iterableUnlike Objects, you can iterate directly on a Map. Very sweet!

edit and re-run!
const boys = {captain: 'greg', geek: 'cameron', funnyboy: 'aidan', president:'nicolas'};
const classBoys = new Map(Object.entries(boys));
classBoys.forEach(boy => console.log(boy));
greg
cameron
aidan
nicolas

size propertyUnlike Objects, you can get the length of elements in your map easily through .size().

edit and re-run!
const boys = {captain: 'greg', geek: 'cameron', funnyboy: 'aidan', president:'nicolas'};
const classBoys = new Map(Object.entries(boys));
console.log('number of boys in class '+classBoys.size);
number of boys in class 4

Set()

A Set is a unique list of values. One common use for a Set is to convert your array to a Set in order to remove duplicate values. Like Maps, they can also consist of primitive values or object references. See here for properties & methods.

creation

edit and re-run!
const girls = ['julia', 'sophia', 'gillian', 'belicia', 'sophia', 'sarah', 'natalie'];
const set = new Set(girls);
console.log('number of unique girl names in class '+set.size);
 set.forEach(girl => console.log(girl));
number of unique girl names in class 6
julia
sophia
gillian
belicia
sarah
natalie

array differences

Here are the key things to remember (read more here):

  • Sets will toss out any duplicates
  • Removing elements from Set is easier since you don't need the index
  • Set doesn't support access by index number (i.e. girls[0])
  • Arrays will be faster for iteration & random access

Sets are also potentially better when you want to perform operations on a dataset, such as union, difference, or intersection.

union

Combine all elements from 2 set into a new set.

edit and re-run!
const school =  new Set(['julia', 'sophia', 'gillian', 'belicia','sarah', 'natalie']);
const girlScouts = new Set(['sophia', 'kate', 'helen', 'julia']);

const allGirls = new Set([...school, ...girlScouts]);
console.log('union of all girls: '+ Array.from(allGirls));
 
union of all girls: julia,sophia,gillian,belicia,sarah,natalie,kate,helen

intersection

Retrieve elements that are contained in both sets.

edit and re-run!
const school =  new Set(['julia', 'sophia', 'gillian', 'belicia','sarah', 'natalie']);
const girlScouts = new Set(['sophia', 'kate', 'helen', 'julia']);
const schoolScouts = new Set([...school].filter(girl => girlScouts.has(girl)));
console.log('girl Scouts in class: '+ Array.from(schoolScouts));
 
girl Scouts in class: julia,sophia

difference

Elements are are in first set but not second set.

edit and re-run!
const school =  new Set(['julia', 'sophia', 'gillian', 'belicia','sarah', 'natalie']);
const girlScouts = new Set(['sophia', 'kate', 'helen', 'julia']);
const nonScouts = new Set([...school].filter(girl => !girlScouts.has(girl)));
console.log('girls not in Scouts: '+ Array.from(nonScouts));
 
girls not in Scouts: gillian,belicia,sarah,natalie

Research More...

  1. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
  2. https://javascript.info/map-set-weakmap-weakset
  3. https://hackernoon.com/what-you-should-know-about-es6-maps-dc66af6b9a1e
  4. http://www.deadcoderising.com/es6-working-with-sets-in-javascript/
  5. https://medium.com/front-end-hacking/es6-set-vs-array-what-and-when-efc055655e1a
  6. http://2ality.com/2015/01/es6-set-operations.html
  7. http://www.samanthaming.com/tidbits/10-remove-array-duplicates-using-set