How to Create a Map of Maps in JavaScript


How to Create a Map of Maps in JavaScript ?

Answer

To create a map of maps in JavaScript, you can use the Map data structure. A map of maps allows you to organize data hierarchically, where each key in the outer map points to another map.



✐ Examples

1 Creating a Map of Maps with Integer Keys and Values

We can create a map of maps in JavaScript by using the Map data structure. This example demonstrates creating a map where both the outer and inner maps use integers for keys and values.

For example,

  1. We start by declaring and initializing a map named outerMap where each value is another map.
  2. We populate the inner maps with key-value pairs.
  3. We insert the inner maps into the outer map using appropriate keys.
  4. We print the resulting map of maps to the console to verify the structure.

JavaScript Program

const outerMap = new Map();

// Populate the inner maps
const innerMap1 = new Map([
    [1, 10],
    [2, 20],
    [3, 30]
]);
const innerMap2 = new Map([
    [4, 40],
    [5, 50],
    [6, 60]
]);

// Insert the inner maps into the outer map
outerMap.set(1, innerMap1);
outerMap.set(2, innerMap2);

// Print the resulting map of maps
console.log('Map of maps with integer keys and values:');
outerMap.forEach((innerMap, outerKey) => {
    console.log(`Outer key: ${outerKey}`);
    innerMap.forEach((value, innerKey) => {
        console.log(`  Inner key: ${innerKey}, value: ${value}`);
    });
});

Output

Map of maps with integer keys and values:
Outer key: 1
  Inner key: 1, value: 10
  Inner key: 2, value: 20
  Inner key: 3, value: 30
Outer key: 2
  Inner key: 4, value: 40
  Inner key: 5, value: 50
  Inner key: 6, value: 60

2 Creating a Map of Maps with Mixed Key and Value Types

We can create a map of maps in JavaScript by using the Map data structure. This example demonstrates creating a map where the outer map uses strings for keys and the inner maps use integers for keys and strings for values.

For example,

  1. We start by declaring and initializing a map named outerMap where each value is another map with mixed key and value types.
  2. We populate the inner maps with key-value pairs.
  3. We insert the inner maps into the outer map using appropriate keys.
  4. We print the resulting map of maps to the console to verify the structure.

JavaScript Program

const outerMap = new Map();

// Populate the inner maps
const innerMap1 = new Map([
    [1, 'one'],
    [2, 'two'],
    [3, 'three']
]);
const innerMap2 = new Map([
    [4, 'four'],
    [5, 'five'],
    [6, 'six']
]);

// Insert the inner maps into the outer map
outerMap.set('first', innerMap1);
outerMap.set('second', innerMap2);

// Print the resulting map of maps
console.log('Map of maps with mixed key and value types:');
outerMap.forEach((innerMap, outerKey) => {
    console.log(`Outer key: ${outerKey}`);
    innerMap.forEach((value, innerKey) => {
        console.log(`  Inner key: ${innerKey}, value: ${value}`);
    });
});

Output

Map of maps with mixed key and value types:
Outer key: first
  Inner key: 1, value: one
  Inner key: 2, value: two
  Inner key: 3, value: three
Outer key: second
  Inner key: 4, value: four
  Inner key: 5, value: five
  Inner key: 6, value: six

3 Creating a Map of Maps with String Keys and Double Values

We can create a map of maps in JavaScript by using the Map data structure. This example demonstrates creating a map where both the outer and inner maps use strings for keys and doubles for values.

For example,

  1. We start by declaring and initializing a map named outerMap where each value is another map with strings for keys and doubles for values.
  2. We populate the inner maps with key-value pairs.
  3. We insert the inner maps into the outer map using appropriate keys.
  4. We print the resulting map of maps to the console to verify the structure.

JavaScript Program

const outerMap = new Map();

// Populate the inner maps
const innerMap1 = new Map([
    ['A', 1.1],
    ['B', 2.2],
    ['C', 3.3]
]);
const innerMap2 = new Map([
    ['D', 4.4],
    ['E', 5.5],
    ['F', 6.6]
]);

// Insert the inner maps into the outer map
outerMap.set('group1', innerMap1);
outerMap.set('group2', innerMap2);

// Print the resulting map of maps
console.log('Map of maps with string keys and double values:');
outerMap.forEach((innerMap, outerKey) => {
    console.log(`Outer key: ${outerKey}`);
    innerMap.forEach((value, innerKey) => {
        console.log(`  Inner key: ${innerKey}, value: ${value}`);
    });
});

Output

Map of maps with string keys and double values:
Outer key: group1
  Inner key: A, value: 1.1
  Inner key: B, value: 2.2
  Inner key: C, value: 3.3
Outer key: group2
  Inner key: D, value: 4.4
  Inner key: E, value: 5.5
  Inner key: F, value: 6.6

Summary

In this tutorial, we learned How to Create a Map of Maps in JavaScript language with well detailed examples.




More JavaScript Maps Tutorials

  1. How to create an Empty Map in JavaScript ?
  2. How to create a Map with Initial Key-Value Pairs in JavaScript ?
  3. How to Print a Map in JavaScript ?
  4. How to Add a Key-Value Pair to a Map in JavaScript ?
  5. How to Set a Default Value for a Key in a Map in JavaScript ?
  6. How to Update the Value for a Key in a Map in JavaScript ?
  7. How to Check if a Map is Empty in JavaScript ?
  8. How to Check if a Key Exists in a Map in JavaScript ?
  9. How to Check if a Value Exists in a Map in JavaScript ?
  10. How to Get the Value Associated with a Key in a Map in JavaScript ?
  11. How to Remove a Key-Value Pair from a Map in JavaScript ?
  12. How to Remove Key-Value Pairs from a Map Based on Values in JavaScript ?
  13. How to Iterate Over Keys in a Map in JavaScript ?
  14. How to Iterate Over Values in a Map in JavaScript ?
  15. How to Iterate Over Entries (Key-Value Pairs) in a Map in JavaScript ?
  16. How to Get the Size (Number of Key-Value Pairs) of a Map in JavaScript ?
  17. How to Convert a Map to an Array of Keys in JavaScript ?
  18. How to Convert a Map to an Array of Values in JavaScript ?
  19. How to Convert a Map to an Array of Key-Value Pairs in JavaScript ?
  20. How to Merge Two Maps in JavaScript ?
  21. How to Copy a Map in JavaScript ?
  22. How to Check if Two Maps are Equal in JavaScript ?
  23. How to Sort a Map by Keys in JavaScript ?
  24. How to Sort a Map by Values in JavaScript ?
  25. How to Filter a Map Based on Keys in JavaScript ?
  26. How to Filter a Map Based on Values in JavaScript ?
  27. How to Reduce Values in a Map to a Single Value in JavaScript ?
  28. How to Convert an Array of Key-Value Pairs to a Map in JavaScript ?
  29. How to Convert a Map to a JSON String in JavaScript ?
  30. How to Convert a JSON String to a Map in JavaScript ?
  31. How to Swap Keys and Values in a Map in JavaScript ?
  32. How to Create a Map of Maps in JavaScript ?
  33. How to Iterate Over a Map of Maps in JavaScript ?