A JavaScript-gyűjtemények használata - Térkép és készlet

Bevezetés

A JavaScript-ben objectstöbb érték összetett adatstruktúraként történő tárolására szolgálnak.

Az objektum göndör zárójelekkel {…}és a tulajdonságok listájával jön létre . A tulajdonság egy kulcs-érték pár, ahol a keykarakterláncnak kell lennie, és a valuebármilyen típusú lehet.

Másrészt arraysrendezett gyűjtemény, amely bármilyen típusú adatot tárolhat. A JavaScript-ben tömbök szögletes zárójelben készülnek, [...]és lehetővé teszik az ismétlődő elemeket.

Az ES6-ig (ECMAScript 2015) a JavaScript, objectsés ezek arraysvoltak a legfontosabb adatszerkezetek az adatgyűjtések kezeléséhez. A fejlesztői közösségnek ezen kívül nem sok választása volt. Ennek ellenére az objektumok és tömbök kombinációja sok esetben képes volt az adatok kezelésére.

Volt azonban néhány hiányosság,

  • Az objektumkulcsok csak típusúak lehetnek string.
  • Az objektumok nem tartják be a beléjük helyezett elemek sorrendjét.
  • Az objektumokból hiányzik néhány hasznos módszer, ami megnehezíti bizonyos helyzetekben történő használatukat. Például nem lehet lengthkönnyen kiszámítani az objektum méretét ( ). Az objektum felsorolása nem is olyan egyszerű.
  • A tömbök olyan elemek gyűjteménye, amelyek lehetővé teszik a másolatokat. Csak külön elemmel rendelkező tömbök támogatása további logikát és kódot igényel.

Az ES6 bevezetésével két új adatstruktúrát kaptunk, amelyek orvosolják a fent említett hiányosságokat, Mapés Set. Ebben a cikkben alaposan megvizsgáljuk mindkettőt, és megértjük, hogyan lehet felhasználni őket különböző helyzetekben.

Térkép

Mapkulcs-érték párok gyűjteménye, ahol a kulcs bármilyen típusú lehet. Mapemlékszik elemeinek eredeti beszúrási sorrendjére, ami azt jelenti, hogy az adatok ugyanabban a sorrendben nyerhetők, ahová beillesztették.

Más szavakkal, Mapjellemzői vannak mindkettőnek Objectés Array:

  • Az objektumhoz hasonlóan támogatja a kulcs-érték pár struktúrát.
  • Mint egy tömb, emlékszik a beszúrási sorrendre.

Térkép létrehozása és inicializálása

Új Maphozható létre így:

const map = new Map();

Ami üreset ad vissza Map:

Map(0) {}

Az a létrehozásának másik módja a Mapkezdeti értékek. Így hozhat létre egy Maphárom kulcsérték-párral:

const freeCodeCampBlog = new Map([ ['name', 'freeCodeCamp'], ['type', 'blog'], ['writer', 'Tapas Adhikary'], ]);

Ami Maphárom elemű a-t ad vissza :

Map(3) {"name" => "freeCodeCamp", "type" => "blog", "writer" => "Tapas Adhikary"}

Értékek hozzáadása egy térképhez

A térkép értékének növeléséhez használja a set(key, value)módszert.

A set(key, value)módszer két paramétert, keyés value, ha a kulcs és érték lehet bármilyen típusú, egy primitív ( boolean, string, number, stb), vagy egy tárgy:

// create a map const map = new Map(); // Add values to the map map.set('name', 'freeCodeCamp'); map.set('type', 'blog'); map.set('writer', 'Tapas Adhikary');

Kimenet:

Map(3) {"name" => "freeCodeCamp", "type" => "blog", "writer" => "Tapas Adhikary"}

Felhívjuk figyelmét, hogy ha ugyanazt a kulcsot használja Maptöbbszörös érték hozzáadásához , akkor az mindig az előző értéket váltja fel:

// Add a different writer map.set('writer', 'Someone else!');

Tehát a kimenet a következő lenne:

Map(3)  {"name" => "freeCodeCamp", "type" => "blog", "writer" => "Someone else!"}

Hogyan nyerhetünk értékeket egy térképből

Ha értéket szeretne kapni a-ból Map, használja a következő get(key)módszert:

map.get('name'); // returns freeCodeCamp

Minden a térképkulcsokról

MapA kulcsok bármilyen típusúak lehetnek, primitívek vagy objektumok. Ez az egyik fő különbség a Mapszokásos JavaScript objektumok között, ahol a kulcs csak karakterlánc lehet:

// create a Map const funMap = new Map(); funMap.set(360, 'My House Number'); // number as key funMap.set(true, 'I write blogs!'); // boolean as key let obj = {'name': 'tapas'} funMap.set(obj, true); // object as key console.log(funMap);

Itt van a kimenet:

Map(3) { 360 => "My House Number", true => "I write blogs!", {…} => true }

Egy szokásos JavaScript objektum mindig a karakterláncként kezeli a kulcsot. Még akkor is, ha átad egy primitívet vagy objektumot, belülről konvertálja a kulcsot karakterlánccá:

// Create an empty object const funObj = {}; // add a property. Note, passing the key as a number. funObj[360] = 'My House Number'; // It returns true because the number 360 got converted into the string '360' internally! console.log(funObj[360] === funObj['360']);

Térkép tulajdonságai és módszerei

A JavaScript Mapbeépített tulajdonságokkal és módszerekkel rendelkezik, amelyek megkönnyítik a használatát. Íme néhány a leggyakoribbak közül:

  • A sizetulajdonság segítségével megtudhatja, hogy hány elem van egy Map:
console.log('size of the map is', map.size);
  • Keressen egy elemet a has(key)módszerrel:
// returns true, if map has an element with the key, 'John' console.log(map.has('John')); // returns false, if map doesn't have an element with the key, 'Tapas' console.log(map.has('Tapas')); 
  • Távolítson el egy elemet a delete(key)módszerrel:
map.delete('Sam'); // removes the element with key, 'Sam'.
  • A clear()módszer segítségével távolítsa el az összes elemet Mapegyszerre:
// Clear the map by removing all the elements map.clear(); map.size // It will return, 0 

MapIterator: keys(), values(), and entries()

The methods keys(), values() and entries() methods return a MapIterator, which is excellent because you can use a for-of or forEach loop directly on it.

First, create a simple Map:

const ageMap = new Map([ ['Jack', 20], ['Alan', 34], ['Bill', 10], ['Sam', 9] ]);
  • Get all the keys:
console.log(ageMap.keys()); // Output: // MapIterator {"Jack", "Alan", "Bill", "Sam"}
  • Get all the values:
console.log(ageMap.values()); // Output // MapIterator {20, 34, 10, 9}
  • Get all the entries (key-value pairs):
console.log(ageMap.entries()); // Output // MapIterator {"Jack" => 20, "Alan" => 34, "Bill" => 10, "Sam" => 9}

How to Iterate Over a Map

You can use either the forEach or for-of loop to iterate over a Map:

// with forEach ageMap.forEach((value, key) => { console.log(`${key} is ${value} years old!`); }); // with for-of for(const [key, value] of ageMap) { console.log(`${key} is ${value} years old!`); }

The output is going to be the same in both cases:

Jack is 20 years old! Alan is 34 years old! Bill is 10 years old! Sam is 9 years old!

How to Convert an Object into a Map

You may encounter a situation where you need to convert an object to a Map-like structure. You can use the method, entries of Object to do that:

const address = { 'Tapas': 'Bangalore', 'James': 'Huston', 'Selva': 'Srilanka' }; const addressMap = new Map(Object.entries(address));

How to Convert a Map into an Object

If you want to do the reverse, you can use the fromEntries method:

Object.fromEntries(map)

How to Convert a Map into an Array

There are a couple of ways to convert a map into an array:

  • Using Array.from(map):
const map = new Map(); map.set('milk', 200); map.set("tea", 300); map.set('coffee', 500); console.log(Array.from(map));
  • Using the spread operator:
console.log([...map]);

Map vs. Object: When should you use them?

Map has characteristics of both object and array. However, Map is more like an object than array due to the nature of storing data in the key-value format.

The similarity with objects ends here though. As you've seen, Map is different in a lot of ways. So, which one should you use, and when? How do you decide?

Use Map when:

  • Your needs are not that simple. You may want to create keys that are non-strings. Storing an object as a key is a very powerful approach. Map gives you this ability by default.
  • You need a data structure where elements can be ordered. Regular objects do not maintain the order of their entries.
  • You are looking for flexibility without relying on an external library like lodash. You may end up using a library like lodash because we do not find methods like has(), values(), delete(), or a property like size with a regular object. Map makes this easy for you by providing all these methods by default.

Use an object when:

  • You do not have any of the needs listed above.
  • You rely on JSON.parse() as a Map cannot be parsed with it.

Set

A Set is a collection of unique elements that can be of any type. Set is also an ordered collection of elements, which means that elements will be retrieved in the same order that they were inserted in.

A Set in JavaScript behaves the same way as a mathematical set.

How to Create and Initialize a Set

A new Set can be created like this:

const set = new Set(); console.log(set);

And the output will be an empty Set:

Set(0) {}

Here's how to create a Set with some initial values:

const fruteSet = new Set(['?', '?', '?', '?']); console.log(fruteSet);

Output:

Set(4) {"?", "?", "?", "?"}

Set Properties and Methods

Set has methods to add an element to it, delete elements from it, check if an element exists in it, and to clear it completely:

  • Use the size property to know the size of the Set. It returns the number of elements in it:
set.size
  • Use the add(element) method to add an element to the Set:
// Create a set - saladSet const saladSet = new Set(); // Add some vegetables to it saladSet.add('?'); // tomato saladSet.add('?'); // avocado saladSet.add('?'); // carrot saladSet.add('?'); // cucumber console.log(saladSet); // Output // Set(4) {"?", "?", "?", "?"}

I love cucumbers! How about adding one more?

Oh no, I can't – Set is a collection of unique elements:

saladSet.add('?'); console.log(saladSet);

The output is the same as before – nothing got added to the saladSet.

  • Use the has(element) method to search if we have a carrot (?) or broccoli (?) in the Set:
// The salad has a ?, so returns true console.log('Does the salad have a carrot?', saladSet.has('?')); // The salad doesn't have a ?, so returns false console.log('Does the salad have broccoli?', saladSet.has('?'));
  • Use the delete(element) method to remove the avocado(?) from the Set:
saladSet.delete('?'); console.log('I do not like ?, remove from the salad:', saladSet);

Now our salad Set is as follows:

Set(3) {"?", "?", "?"}
  • Use the clear() method to remove all elements from a Set:
saladSet.clear();

How to Iterate Over a Set

Set has a method called values() which returns a SetIterator to get all its values:

// Create a Set const houseNos = new Set([360, 567, 101]); // Get the SetIterator using the `values()` method console.log(houseNos.values());

Output:

SetIterator {360, 567, 101}

We can use a forEach or for-of loop on this to retrieve the values.

Interestingly, JavaScript tries to make Set compatible with Map. That's why we find two of the same methods as Map, keys() and entries().

As Set doesn't have keys, the keys() method returns a SetIterator to retrieve its values:

console.log(houseNos.keys()); // Output // console.log(houseNos.keys());

With Map, the entries() method returns an iterator to retrieve key-value pairs. Again there are no keys in a Set, so entries() returns a SetIterator to retrieve the value-value pairs:

console.log(houseNos.entries()); // Output // SetIterator {360 => 360, 567 => 567, 101 => 101}

How to Enumerate over a Set

We can enumerate over a Set using forEach and for-of loops:

// with forEach houseNos.forEach((value) => { console.log(value); }); // with for-of for(const value of houseNos) { console.log(value); }

The output of both is:

360 567 101

Sets and Arrays

An array, like a Set, allows you to add and remove elements. But Set is quite different, and is not meant to replace arrays.

The major difference between an array and a Set is that arrays allow duplicate elements. Also, some of the Set operations like delete() are faster than array operations like shift() or splice().

Think of Set as an extension of a regular array, just with more muscles. The Set data structure is not a replacement of the array. Both can solve interesting problems.

How to Convert a Set into an array

Converting a Set into an array is simple:

const arr = [...houseNos]; console.log(arr);

Unique values from an array using the Set

Creating a Set is a really easy way to remove duplicate values from an array:

// Create a mixedFruit array with a few duplicate fruits const mixedFruit = ['?', '?', '?', '?', '?', '?', '?',]; // Pass the array to create a set of unique fruits const mixedFruitSet = new Set(mixedFruit); console.log(mixedFruitSet);

Output:

Set(4) {"?", "?", "?", "?"}

Set and Object

A Set can have elements of any type, even objects:

// Create a person object const person = { 'name': 'Alex', 'age': 32 }; // Create a set and add the object to it const pSet = new Set(); pSet.add(person); console.log(pSet);

Output:

No surprise here – the Set contains one element that is an object.

Let's change a property of the object and add it to the set again:

// Change the name of the person person.name = 'Bob'; // Add the person object to the set again pSet.add(person); console.log(pSet);

What do you think the output will be? Two person objects or just one?

Here is the output:

Set is a collection of unique elements. By changing the property of the object, we haven't changed the object itself. Hence Set will not allow duplicate elements.

Set is a great data structure to use in addition to JavaScript arrays. It doesn't have a huge advantage over regular arrays, though.

Use Set when you need to maintain a distinct set of data to perform set operations on like union, intersection, difference, and so on.

In Summary

Here is a GitHub repository to find all the source code used in this article. If you found it helpful, please show your support by giving it a star: //github.com/atapas/js-collections-map-set

You can read more about both the Map and Set data structures here:

  • Map (MDN)
  • Set (MDN)

You may also like some of my other articles:

  • My Favorite JavaScript Tips and Tricks
  • JavaScript equality and similarity with ==, === and Object.is()

If this article was useful, please share it so others can read it as well. You can @ me on Twitter (@tapasadhikary) with comments, or feel free to follow me.