- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Map
Key-Value Pairs:
- Maps store collections of key-value pairs where each key is unique.
- Keys can be of any data type, including objects and primitive values.
Iterability:
- Maps maintain the order of insertion of key-value pairs, making them iterable in the order of insertion.
Example: Creating a Map
const myMap = new Map();
myMap.set('name', 'John');
myMap.set('age', 30);
Accessing Values:
- Use the get() method to retrieve the value associated with a specific key.
- Use the has() method to check if a key exists in the map.
Example: Accessing Values
console.log(myMap.get('name')); // Output: John
console.log(myMap.has('age')); // Output: true
Size:
- The size property returns the number of key-value pairs in the map.
Example: Size
console.log(myMap.size); // Output: 2
Iterating over a Map:
- Use methods like forEach(), for...of loop, or the entries(), keys(), and values() iterators to iterate over a map.
Example: Iterating over a Map
myMap.forEach((value, key) => {
console.log(`${key}: ${value}`);
});
Key Points
- JavaScript Map is a collection of key-value pairs with unique keys.
- Maps are iterable and maintain the order of insertion.
- They provide efficient methods for adding, retrieving, and iterating over key-value pairs.
- Maps are commonly used for storing data where the relationship between keys and values is important.