Solution Review: Maps
Learn the solution to the Maps challenge.
We'll cover the following...
We'll cover the following...
Solution
Let’s take a look at the solution.
Explanation
We needed to implement the Map data structure to get the exercise code running.
Map object
Let’s start by creating a map element. The Map object, todo, is created using the new keyword, as seen at line 4. Here, we are ...