freeCodeCamp Challenge Guide: Create an ES6 JavaScript Map

Create an ES6 JavaScript Map

This is a stub. Help the community by making a suggestion of a hint and/or solution. We may use your suggestions to update the missing sections.


Problem Explanation

This summarizes what need to be done without just restating the challenge description and/or instructions. This is an optional section

Relevant Links


Hints

Hint 1

Hint goes here

Hint 2

Hint goes here


Solutions

Solution 1 (Click to Show/Hide)
// change code below this line
const myMap = new Map();

myMap.set("freeCodeCamp", "Awesome!");

Code Explanation

  • Code explanation goes here

Relevant Links

3 Likes