Update create-an-es6-javascript-map.md (#43495)

This commit is contained in:
Mohanesh Babu
2021-09-21 20:28:21 +05:30
committed by GitHub
parent 1f02d45337
commit 128d7a509d

View File

@ -39,5 +39,7 @@ assert(myMap.get('freeCodeCamp') === 'Awesome!');
# --solutions--
```js
// solution required
const myMap = new Map();
myMap.set("freeCodeCamp", "Awesome!");
```