freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/data-structures/create-an-es6-javascript-ma...

867 B

id title challengeType videoUrl localeTitle
587d825b367417b2b2512c8d Create an ES6 JavaScript Map 1 Создание карты JavaScript ES6

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(typeof myMap === "object", "The myMap object exists.");'
  - text: 'myMap содержит пару ключевых значений <code>freeCodeCamp</code> , <code>Awesome!</code> ,'
    testString: 'assert(myMap.get("freeCodeCamp") === "Awesome!", "myMap contains the key value pair <code>freeCodeCamp</code>, <code>Awesome!</code>.");'

Challenge Seed

// change code below this line

Solution

// solution required