326 lines
13 KiB
Markdown
Raw Normal View History

---
id: 587d7b8f367417b2b2512b61
title: Use the map Method to Extract Data from an Array
challengeType: 1
forumTopicId: 18214
---
## Description
<section id='description'>
So far we have learned to use pure functions to avoid side effects in a program. Also, we have seen the value in having a function only depend on its input arguments.
This is only the beginning. As its name suggests, functional programming is centered around a theory of functions.
It would make sense to be able to pass them as arguments to other functions, and return a function from another function. Functions are considered <dfn>first class objects</dfn> in JavaScript, which means they can be used like any other object. They can be saved in variables, stored in an object, or passed as function arguments.
Let's start with some simple array functions, which are methods on the array object prototype. In this exercise we are looking at <code>Array.prototype.map()</code>, or more simply <code>map</code>.
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
The <code>map</code> method iterates over each item in an array and returns a new array containing the results of calling the callback function on each element. It does this without mutating the original array.
When the callback is used, it is passed three arguments. The first argument is the current element being processed. The second is the index of that element and the third is the array upon which the <code>map</code> method was called.
See below for an example using the <code>map</code> method on the <code>users</code> array to return a new array containing only the names of the users as elements. For simplicity, the example only uses the first argument of the callback.
```js
const users = [
{ name: 'John', age: 34 },
{ name: 'Amy', age: 20 },
{ name: 'camperCat', age: 10 }
];
const names = users.map(user => user.name);
console.log(names); // [ 'John', 'Amy', 'camperCat' ]
```
</section>
## Instructions
<section id='instructions'>
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
The <code>watchList</code> array holds objects with information on several movies. Use <code>map</code> on <code>watchList</code> to assign a new array of objects with only <code>title</code> and <code>rating</code> keys to the <code>ratings</code> variable. The code in the editor currently uses a <code>for</code> loop to do this, so you should replace the loop functionality with your <code>map</code> expression.
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: The <code>watchList</code> variable should not change.
testString: assert(watchList[0].Title === "Inception" && watchList[4].Director == "James Cameron");
- text: Your code should not use a <code>for</code> loop.
testString: assert(!removeJSComments(code).match(/for\s*?\(.*?\)/));
- text: Your code should use the <code>map</code> method.
testString: assert(code.match(/\.map/g));
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
- text: <code>ratings</code> should equal <code>[{"title":"Inception","rating":"8.8"},{"title":"Interstellar","rating":"8.6"},{"title":"The Dark Knight","rating":"9.0"},{"title":"Batman Begins","rating":"8.3"},{"title":"Avatar","rating":"7.9"}]</code>.
testString: assert(JSON.stringify(ratings) === JSON.stringify([{"title":"Inception","rating":"8.8"},{"title":"Interstellar","rating":"8.6"},{"title":"The Dark Knight","rating":"9.0"},{"title":"Batman Begins","rating":"8.3"},{"title":"Avatar","rating":"7.9"}]));
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
// the global variable
var watchList = [
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
{
"Title": "Inception",
"Year": "2010",
"Rated": "PG-13",
"Released": "16 Jul 2010",
"Runtime": "148 min",
"Genre": "Action, Adventure, Crime",
"Director": "Christopher Nolan",
"Writer": "Christopher Nolan",
"Actors": "Leonardo DiCaprio, Joseph Gordon-Levitt, Ellen Page, Tom Hardy",
"Plot": "A thief, who steals corporate secrets through use of dream-sharing technology, is given the inverse task of planting an idea into the mind of a CEO.",
"Language": "English, Japanese, French",
"Country": "USA, UK",
"Awards": "Won 4 Oscars. Another 143 wins & 198 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_SX300.jpg",
"Metascore": "74",
"imdbRating": "8.8",
"imdbVotes": "1,446,708",
"imdbID": "tt1375666",
"Type": "movie",
"Response": "True"
},
{
"Title": "Interstellar",
"Year": "2014",
"Rated": "PG-13",
"Released": "07 Nov 2014",
"Runtime": "169 min",
"Genre": "Adventure, Drama, Sci-Fi",
"Director": "Christopher Nolan",
"Writer": "Jonathan Nolan, Christopher Nolan",
"Actors": "Ellen Burstyn, Matthew McConaughey, Mackenzie Foy, John Lithgow",
"Plot": "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.",
"Language": "English",
"Country": "USA, UK",
"Awards": "Won 1 Oscar. Another 39 wins & 132 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMjIxNTU4MzY4MF5BMl5BanBnXkFtZTgwMzM4ODI3MjE@._V1_SX300.jpg",
"Metascore": "74",
"imdbRating": "8.6",
"imdbVotes": "910,366",
"imdbID": "tt0816692",
"Type": "movie",
"Response": "True"
},
{
"Title": "The Dark Knight",
"Year": "2008",
"Rated": "PG-13",
"Released": "18 Jul 2008",
"Runtime": "152 min",
"Genre": "Action, Adventure, Crime",
"Director": "Christopher Nolan",
"Writer": "Jonathan Nolan (screenplay), Christopher Nolan (screenplay), Christopher Nolan (story), David S. Goyer (story), Bob Kane (characters)",
"Actors": "Christian Bale, Heath Ledger, Aaron Eckhart, Michael Caine",
"Plot": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, the caped crusader must come to terms with one of the greatest psychological tests of his ability to fight injustice.",
"Language": "English, Mandarin",
"Country": "USA, UK",
"Awards": "Won 2 Oscars. Another 146 wins & 142 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_SX300.jpg",
"Metascore": "82",
"imdbRating": "9.0",
"imdbVotes": "1,652,832",
"imdbID": "tt0468569",
"Type": "movie",
"Response": "True"
},
{
"Title": "Batman Begins",
"Year": "2005",
"Rated": "PG-13",
"Released": "15 Jun 2005",
"Runtime": "140 min",
"Genre": "Action, Adventure",
"Director": "Christopher Nolan",
"Writer": "Bob Kane (characters), David S. Goyer (story), Christopher Nolan (screenplay), David S. Goyer (screenplay)",
"Actors": "Christian Bale, Michael Caine, Liam Neeson, Katie Holmes",
"Plot": "After training with his mentor, Batman begins his fight to free crime-ridden Gotham City from the corruption that Scarecrow and the League of Shadows have cast upon it.",
"Language": "English, Urdu, Mandarin",
"Country": "USA, UK",
"Awards": "Nominated for 1 Oscar. Another 15 wins & 66 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BNTM3OTc0MzM2OV5BMl5BanBnXkFtZTYwNzUwMTI3._V1_SX300.jpg",
"Metascore": "70",
"imdbRating": "8.3",
"imdbVotes": "972,584",
"imdbID": "tt0372784",
"Type": "movie",
"Response": "True"
},
{
"Title": "Avatar",
"Year": "2009",
"Rated": "PG-13",
"Released": "18 Dec 2009",
"Runtime": "162 min",
"Genre": "Action, Adventure, Fantasy",
"Director": "James Cameron",
"Writer": "James Cameron",
"Actors": "Sam Worthington, Zoe Saldana, Sigourney Weaver, Stephen Lang",
"Plot": "A paraplegic marine dispatched to the moon Pandora on a unique mission becomes torn between following his orders and protecting the world he feels is his home.",
"Language": "English, Spanish",
"Country": "USA, UK",
"Awards": "Won 3 Oscars. Another 80 wins & 121 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMTYwOTEwNjAzMl5BMl5BanBnXkFtZTcwODc5MTUwMw@@._V1_SX300.jpg",
"Metascore": "83",
"imdbRating": "7.9",
"imdbVotes": "876,575",
"imdbID": "tt0499549",
"Type": "movie",
"Response": "True"
}
];
// Add your code below this line
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
var ratings = [];
for(var i=0; i < watchList.length; i++){
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
ratings.push({title: watchList[i]["Title"], rating: watchList[i]["imdbRating"]});
}
// Add your code above this line
2019-12-02 14:25:11 -08:00
console.log(JSON.stringify(ratings));
```
</div>
### After Test
<div id='js-teardown'>
```js
const removeJSComments = str => str.replace(/\/\*[\s\S]*?\*\/|\/\/.*$/gm, '');
```
</div>
</section>
## Solution
<section id='solution'>
```js
// the global variable
var watchList = [
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
{
"Title": "Inception",
"Year": "2010",
"Rated": "PG-13",
"Released": "16 Jul 2010",
"Runtime": "148 min",
"Genre": "Action, Adventure, Crime",
"Director": "Christopher Nolan",
"Writer": "Christopher Nolan",
"Actors": "Leonardo DiCaprio, Joseph Gordon-Levitt, Ellen Page, Tom Hardy",
"Plot": "A thief, who steals corporate secrets through use of dream-sharing technology, is given the inverse task of planting an idea into the mind of a CEO.",
"Language": "English, Japanese, French",
"Country": "USA, UK",
"Awards": "Won 4 Oscars. Another 143 wins & 198 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_SX300.jpg",
"Metascore": "74",
"imdbRating": "8.8",
"imdbVotes": "1,446,708",
"imdbID": "tt1375666",
"Type": "movie",
"Response": "True"
},
{
"Title": "Interstellar",
"Year": "2014",
"Rated": "PG-13",
"Released": "07 Nov 2014",
"Runtime": "169 min",
"Genre": "Adventure, Drama, Sci-Fi",
"Director": "Christopher Nolan",
"Writer": "Jonathan Nolan, Christopher Nolan",
"Actors": "Ellen Burstyn, Matthew McConaughey, Mackenzie Foy, John Lithgow",
"Plot": "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.",
"Language": "English",
"Country": "USA, UK",
"Awards": "Won 1 Oscar. Another 39 wins & 132 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMjIxNTU4MzY4MF5BMl5BanBnXkFtZTgwMzM4ODI3MjE@._V1_SX300.jpg",
"Metascore": "74",
"imdbRating": "8.6",
"imdbVotes": "910,366",
"imdbID": "tt0816692",
"Type": "movie",
"Response": "True"
},
{
"Title": "The Dark Knight",
"Year": "2008",
"Rated": "PG-13",
"Released": "18 Jul 2008",
"Runtime": "152 min",
"Genre": "Action, Adventure, Crime",
"Director": "Christopher Nolan",
"Writer": "Jonathan Nolan (screenplay), Christopher Nolan (screenplay), Christopher Nolan (story), David S. Goyer (story), Bob Kane (characters)",
"Actors": "Christian Bale, Heath Ledger, Aaron Eckhart, Michael Caine",
"Plot": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, the caped crusader must come to terms with one of the greatest psychological tests of his ability to fight injustice.",
"Language": "English, Mandarin",
"Country": "USA, UK",
"Awards": "Won 2 Oscars. Another 146 wins & 142 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_SX300.jpg",
"Metascore": "82",
"imdbRating": "9.0",
"imdbVotes": "1,652,832",
"imdbID": "tt0468569",
"Type": "movie",
"Response": "True"
},
{
"Title": "Batman Begins",
"Year": "2005",
"Rated": "PG-13",
"Released": "15 Jun 2005",
"Runtime": "140 min",
"Genre": "Action, Adventure",
"Director": "Christopher Nolan",
"Writer": "Bob Kane (characters), David S. Goyer (story), Christopher Nolan (screenplay), David S. Goyer (screenplay)",
"Actors": "Christian Bale, Michael Caine, Liam Neeson, Katie Holmes",
"Plot": "After training with his mentor, Batman begins his fight to free crime-ridden Gotham City from the corruption that Scarecrow and the League of Shadows have cast upon it.",
"Language": "English, Urdu, Mandarin",
"Country": "USA, UK",
"Awards": "Nominated for 1 Oscar. Another 15 wins & 66 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BNTM3OTc0MzM2OV5BMl5BanBnXkFtZTYwNzUwMTI3._V1_SX300.jpg",
"Metascore": "70",
"imdbRating": "8.3",
"imdbVotes": "972,584",
"imdbID": "tt0372784",
"Type": "movie",
"Response": "True"
},
{
"Title": "Avatar",
"Year": "2009",
"Rated": "PG-13",
"Released": "18 Dec 2009",
"Runtime": "162 min",
"Genre": "Action, Adventure, Fantasy",
"Director": "James Cameron",
"Writer": "James Cameron",
"Actors": "Sam Worthington, Zoe Saldana, Sigourney Weaver, Stephen Lang",
"Plot": "A paraplegic marine dispatched to the moon Pandora on a unique mission becomes torn between following his orders and protecting the world he feels is his home.",
"Language": "English, Spanish",
"Country": "USA, UK",
"Awards": "Won 3 Oscars. Another 80 wins & 121 nominations.",
"Poster": "http://ia.media-imdb.com/images/M/MV5BMTYwOTEwNjAzMl5BMl5BanBnXkFtZTcwODc5MTUwMw@@._V1_SX300.jpg",
"Metascore": "83",
"imdbRating": "7.9",
"imdbVotes": "876,575",
"imdbID": "tt0499549",
"Type": "movie",
"Response": "True"
}
];
fix(curriculum): Improve verbiage and add examples to the map, filter, and reduce challenges (#37709) * fix: improve verbiage and add examples to challenges * fix: condensed map method wording Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: remove leading space Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce challenge verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shorten verbiage related to reduce 2nd parameter Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened filter verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix; added comma Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: improved verbiage of map method Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: shortened reduce verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: correct map method verbiage Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: added word array Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: added missing comma Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: changed u to sumOfAges Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: created one sentence out of many Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: changed to on each iteration Co-Authored-By: Manish Giri <manish.giri.me@gmail.com> * fix: fixed verbiage in filter and map challenges
2019-11-26 18:03:09 -08:00
var ratings = watchList.map(function(movie) {
return {
title: movie["Title"],
rating: movie["imdbRating"]
}
});
```
</section>