惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
腾讯CDC
Y
Y Combinator Blog
L
LangChain Blog
B
Blog
U
Unit 42
P
Proofpoint News Feed
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
Vercel News
Vercel News
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Map & Set
SATYA SOOTAR · 2026-05-05 · via DEV Community

Hello readers 👋, welcome to the 19th blog in this JavaScript series!

In the last post, we explored the this keyword and how it flexibly points to different callers depending on the context. Today, we are going to talk about two powerful data structures introduced in ES6 that often don't get enough love: Map and Set.

If you have been using plain objects for key-value storage or arrays for everything, you might be missing out on cleaner, more performant ways to handle certain scenarios. Let's break down what Map and Set are, how they differ from traditional Objects and Arrays, and when you should reach for each.

What is a Map?

A Map is a collection of key-value pairs, similar to a regular JavaScript object. But it comes with some significant improvements. A Map object holds key-value pairs and remembers the original insertion order of the keys. Any value, whether it's a primitive or an object reference, can be used as either a key or a value.

Here is a basic example to get us started:

const userRoles = new Map();

// Setting key-value pairs
userRoles.set("satya", "admin");
userRoles.set("priya", "editor");
userRoles.set(42, "meaning of life"); // number as key? Yes, Map allows this

// Getting a value
console.log(userRoles.get("satya")); // "admin"

// Checking if a key exists
console.log(userRoles.has("priya")); // true

// Getting the size
console.log(userRoles.size); // 3

// Deleting a key
userRoles.delete(42);
console.log(userRoles.size); // 2

// Iterating over the Map
for (const [key, value] of userRoles) {
  console.log(`${key}: ${value}`);
}

Enter fullscreen mode Exit fullscreen mode

Notice how we used set(), get(), has(), delete(), and size. These methods make working with key-value data far more straightforward than the manual property manipulation we often do with plain objects.

What problems does Map solve over plain Objects?

At first glance, Map looks like a regular object. Both let you set keys to values, retrieve those values, delete keys, and detect whether something is stored at a key. Historically, objects have been used as maps because JavaScript had no built-in alternative. But Map is preferable in several important cases.

Let's walk through the key differences.

1. Key types are not limited to strings

The keys of a plain object must be strings or symbols. If you try to use a number, it gets converted to a string. With Map, keys can be any value: objects, functions, numbers, booleans, and even NaN.

const obj = {};
const func = function() {};

const myMap = new Map();
myMap.set(obj, "value for an object key");
myMap.set(func, "value for a function key");

// This is simply not possible with plain objects

Enter fullscreen mode Exit fullscreen mode

2. Map has a built-in size property

Getting the number of entries in a plain object is roundabout: you'd typically use Object.keys(obj).length. With a Map, you just refer to the size property.

3. Map is iterable out of the box

A Map is directly iterable. You can use a for...of loop on it and get back [key, value] pairs right away. Plain objects don't implement the iteration protocol by default, so you cannot directly use for...of on them without using Object.keys() or Object.entries() first.

const map = new Map([["a", 1], ["b", 2]]);

// Direct iteration on Map
for (const [key, value] of map) {
  console.log(key, value); // works cleanly
}

// For a plain object, you'd need:
// for (const [key, value] of Object.entries(obj)) { ... }

Enter fullscreen mode Exit fullscreen mode

4. No accidental keys from the prototype

A plain object has a prototype, which means it contains default keys that could collide with your own keys if you are not careful. A Map does not contain any keys by default; it only contains what is explicitly put into it. This makes a Map safer to use with user-provided keys and values, as it avoids potential prototype pollution attacks.

5. Better performance for frequent additions and removals

Map performs better in scenarios involving frequent additions and removals of key-value pairs, while a plain object is not optimized for such usage patterns.

Here is a quick side-by-side comparison for reference:

Feature Map Object
Key types Any value (objects, functions, primitives) Only strings and symbols
Size map.size property Object.keys(obj).length (manual)
Iteration Directly iterable with for...of Not directly iterable; needs helper
Default keys None (safe for user data) Inherited from prototype (possible collisions)
Performance (add/remove) Optimized for frequent changes Not optimized
JSON serialization No native support (needs custom logic) Native support via JSON.stringify

What is a Set?

A Set is a collection of values where each value may only appear once; it is unique in the collection. Like a Map, a Set also remembers the insertion order of its elements. You can store any type of value in a Set, whether primitive values or object references.

At its core, a Set is like an array that automatically prevents duplicate entries. Let's see it in action:

const uniqueNumbers = new Set();

// Adding values
uniqueNumbers.add(1);
uniqueNumbers.add(2);
uniqueNumbers.add(2); // Duplicate! Will be ignored
uniqueNumbers.add(3);

console.log(uniqueNumbers.size); // 3 (not 4)
console.log(uniqueNumbers.has(1)); // true
console.log(uniqueNumbers.has(99)); // false

uniqueNumbers.delete(2);
console.log(uniqueNumbers); // Set(2) { 1, 3 }

// Iterating over the Set
for (const value of uniqueNumbers) {
  console.log(value);
}

uniqueNumbers.clear();
console.log(uniqueNumbers.size); // 0

Enter fullscreen mode Exit fullscreen mode

The add(), has(), delete(), clear(), and size properties work similarly to what we saw with Map.

The problem Set solves: uniqueness without manual checks

Before Set, if you wanted a collection of unique values in an array, you had to manually check for duplicates before pushing each item. This meant writing repetitive code, and as the array grew larger, checking with indexOf or includes became slower.

// Without Set: manually checking for duplicates
const items = [];
function addItem(item) {
  if (!items.includes(item)) {
    items.push(item);
  }
}

Enter fullscreen mode Exit fullscreen mode

With a Set, uniqueness is guaranteed by design:

const items = new Set();
items.add("apple");
items.add("banana");
items.add("apple"); // ignored, already present

// You can also initialize a Set from an array
const numbers = [1, 2, 2, 3, 3, 4];
const uniqueNums = new Set(numbers);
console.log([...uniqueNums]); // [1, 2, 3, 4]

Enter fullscreen mode Exit fullscreen mode

This makes Set perfect for tasks like removing duplicates from a list, tracking visited items, or maintaining a list of unique tags and identifiers.

Set vs Array: the differences that matter

An array is a list-like object used to store multiple values, ordered by index. A Set, on the other hand, is a collection of unique values stored in insertion order. Here are the main differences:

  • Uniqueness: Arrays can hold duplicate values; Sets cannot. Every value in a Set must be unique.
  • Access by index: Arrays let you access elements by their numeric index (arr[0]). Sets don't have indexed access; you check membership via has().
  • Performance: Checking if an element exists in an array using includes() requires scanning the array from the start until the element is found (linear time, O(n)). The has() method on a Set is designed to be sublinear on the number of elements, meaning it is often significantly faster for membership checks, especially as the collection grows.
  • Insertion order: Both arrays and sets maintain insertion order, but arrays are indexed, whereas sets are not.

Comparison summary:

Feature Set Array
Duplicates Not allowed (automatically removed) Allowed
Access Via has() (membership check) Via index (arr[0])
Lookup speed Fast (sublinear) Slower for large collections (linear)
Use case When uniqueness matters When order and duplicates matter
Iteration for...of in insertion order Indexed loops or for...of

When should you use Map?

  • When keys are not known until runtime, or when they are not all strings. Using Map avoids the key type limitations of plain objects.
  • When you need to store data with keys that are objects, functions, or other non-string values.
  • When you want a simple, reliable way to get the size of the collection.
  • When you need to iterate over key-value pairs frequently in insertion order.
  • When you are dealing with user-provided keys and want to avoid accidental collisions with inherited object properties.

When should you use Set?

  • When you need to store a collection of unique values, such as tracking visited pages, unique user IDs, or a tag list without duplicates.
  • When you need fast membership checks: has() is significantly faster than indexOf or includes on large arrays.
  • When you want to quickly remove duplicates from an array: const unique = [...new Set(arr)] is a clean one-liner.
  • When you are working with mathematical set operations like union, intersection, or difference. Modern Set methods support these directly.

A practical example: combining Map and Set

Here is a realistic scenario showing both in action. Imagine you are building a simple application to track which users like which posts:

// Map: post ID to a Set of user IDs who liked the post
const postLikes = new Map();

function likePost(postId, userId) {
  if (!postLikes.has(postId)) {
    postLikes.set(postId, new Set()); // create a new Set if first like
  }
  postLikes.get(postId).add(userId); // Set handles uniqueness automatically
}

function getLikeCount(postId) {
  return postLikes.has(postId) ? postLikes.get(postId).size : 0;
}

function hasUserLiked(postId, userId) {
  return postLikes.has(postId) && postLikes.get(postId).has(userId);
}

likePost("post-1", "user-a");
likePost("post-1", "user-b");
likePost("post-1", "user-a"); // duplicate, ignored automatically
likePost("post-2", "user-a");

console.log(getLikeCount("post-1")); // 2
console.log(hasUserLiked("post-1", "user-b")); // true
console.log(hasUserLiked("post-1", "user-c")); // false

Enter fullscreen mode Exit fullscreen mode

A Map stores the relationship between posts and their likers, while Set ensures that each user can only like a post once. This is clean, expressive, and takes advantage of each data structure's strengths.

Conclusion

Map and Set are two additions to JavaScript that bring clarity, safety, and performance to everyday tasks involving keyed collections and unique values. Once you start using them, you will find yourself reaching for them more often and writing simpler code.

To recap the key points:

  • Map is a key-value collection that allows keys of any type, provides an easy size property, is directly iterable, and has no inherited default keys. It outperforms plain objects in scenarios with frequent additions and deletions.
  • Set is a collection of unique values stored in insertion order. It excels at removing duplicates, performing fast membership checks, and representing real-world sets.
  • Use Map when you need flexible keys or frequent iteration of key-value pairs. Use Set when uniqueness and fast lookups are your priority.
  • Both data structures are directly iterable with for...of and integrate cleanly into modern JavaScript code.

With these tools in your toolkit, you are better equipped to choose the right data structure for the job, rather than forcing plain objects and arrays into situations where they are not ideal.


Hope you found this helpful! If you spot any mistakes or have suggestions, let me know. You can find me on LinkedIn and X, where I post more about web development.