JavaScript offers various data structures for different data management needs. Among these are the Map and Set objects, introduced in ES6 (ECMAScript 2015), offering more robust and efficient ways to store and manipulate data than traditional objects and arrays.



Map in JavaScript

A Map is a collection of key-value pairs where the keys and values can be of any data type. This flexibility differentiates it from regular JavaScript objects, which only allow strings and symbols as keys.

Example:

// Creating a Map
let map = new Map();

// Adding Key-Value Pairs
map.set('name', 'Priya');
map.set('age', 25);

// Retrieving Values
console.log(map.get('name')); // Priya

// Checking for a Key
console.log(map.has('age')); // true

// Iterating over a Map
map.forEach((value, key) => {
    console.log(`${key}: ${value}`);
});

Key Features of Map

  • Unique Keys: In a Map, each key is unique. If you add a key-value pair with an existing key, it overwrites the previous value.
  • Order of Elements: The elements in a Map are ordered by their insertion sequence.
  • Flexibility in Keys: A key in a Map can be any value, including functions, objects, or primitives.

Set in JavaScript

A Set is a collection of values where each value must be unique. It's similar to an array but with the constraint that no two elements can be identical.

Example:

// Creating a Set
let set = new Set();

// Adding Values
set.add('apple');
set.add('banana');
set.add('apple'); // This will not be added again

// Checking for a Value
console.log(set.has('banana')); // true

// Iterating over a Set
set.forEach(value => {
    console.log(value);
});

Key Features of Set

  • Uniqueness: Each element in a Set is unique. It will not be added if you try to add a duplicate element.
  • Order of Elements: Elements in a Set are stored in their insertion order.

Conclusion

This tutorial covered the basics of Map and Set in JavaScript. Map is a key-value pair collection that allows various data types as keys and maintains insertion order. On the other hand, Set is a collection of unique values of any type. These structures are powerful features for managing collections of data in JavaScript, enhancing the efficiency and readability of your code.



Found This Page Useful? Share It!
Get the Latest Tutorials and Updates
Join us on Telegram