Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
JavaScript

JavaScript: Use Map and Set for Efficient Data Structures

- 04.07.26 - ErcanOPAK

📦 Map = Key-Value. Set = Unique Values.

Objects are key-value, but limited. Map is better for key-value. Set stores unique values. Faster, cleaner.

📘 Object

const obj = {};
obj.name = "Alice";
obj.age = 30;
// Keys are strings only

📗 Map

const map = new Map();
map.set('name', 'Alice');
map.set(42, 'Answer');
map.set(true, 'Boolean key');
// Any key type!

🎯 Map Methods

// Create map
const map = new Map();

// Set values
map.set('name', 'Alice');
map.set('age', 30);

// Get values
map.get('name');  // 'Alice'

// Check existence
map.has('age');   // true

// Delete value
map.delete('age');

// Size
map.size;  // 1

// Clear all
map.clear();

// Iterate
for (let [key, value] of map) {
  console.log(key, value);
}

// Convert from object
const obj = { name: 'Alice', age: 30 };
const mapFromObj = new Map(Object.entries(obj));

// Convert to object
const objFromMap = Object.fromEntries(map);

💡 Set Example

// Create set
const set = new Set();

// Add values (unique)
set.add(1);
set.add(2);
set.add(2);  // Ignored (duplicate)

// Check existence
set.has(1);   // true

// Delete
set.delete(2);

// Size
set.size;  // 1

// Convert array to set (remove duplicates)
const arr = [1, 2, 2, 3, 4, 4, 5];
const unique = new Set(arr);  // {1, 2, 3, 4, 5}

// Convert set to array
const uniqueArray = [...unique];  // [1, 2, 3, 4, 5]

// Union, intersection, difference
const setA = new Set([1, 2, 3]);
const setB = new Set([2, 3, 4]);
const union = new Set([...setA, ...setB]);           // {1, 2, 3, 4}
const intersection = new Set([...setA].filter(x => setB.has(x))); // {2, 3}
const difference = new Set([...setA].filter(x => !setB.has(x)));  // {1}

“Map and Set are more efficient than objects and arrays for certain use cases. Map for key-value, Set for unique values.”

— JavaScript Developer

Related posts:

JavaScript: Use Spread Operator (...) for Cleaner Arrays and Objects

JavaScript Event Loop Misconceptions — Why setTimeout(fn, 0) Is NOT Instant

Why structuredClone() Beats JSON Deep Copy

Post Views: 2

Post navigation

HTML: Use Audio and Video Tags for Multimedia
Ajax: Use Interceptors to Modify Requests and Responses

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

July 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Jun    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (597)
  • Add Constraint to SQL Table to ensure email contains @ (582)
  • Average of all values in a column that are not zero in SQL (545)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (512)
  • Find numbers with more than two decimal places in SQL (460)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes
  • Ajax: Use Axios for HTTP Requests
  • JavaScript: Understand Hoisting
  • HTML: Use Web Storage for Client-Side Data
  • CSS: Use Filter Effects for Visual Magic
  • Windows 11: Unlock God Mode for All Settings

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com