Use the map Method to Extract Data from an Array - Functional Programming - Free Code Camp

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

You're so good at explaining these exercises, thank you so much!

oscarpereznavarro
Автор

These short videos of yours are tremendously helpful. Many thanks!

tupperck
Автор

Great explanation. I get it now after you explained it!

danielperezrosales
Автор

I just loved the way you try to explain as much as possible. I came across everything you post about this freecodecamp js tutorial.

rabbykhan
Автор

I found something a bit shorter
var ratings = watchList.map(movie => {return {title: movie.Title, rating: movie.imdbRating}; });

Thanks for all you do with these solutions, they really really do help a lot.
Cheers and thanks again !

ngoziechegini
Автор

Functional Programming is pretty confusing ! I do hope I can handle that ! And thanks for explaining everything in detail

devjeff
Автор

"I went a little in depth here".
DO NOT CARE! GOOD EXPLANATION IS GOOD!

JonathanWrightZA
Автор

6:24 We can't use dot notation because "Title" is in quotes. Good explanation though thanks!

nickpacanowski
Автор

Thank you so much helped me a lot explained it very well

paulfanning
Автор

Currently when I try your solution it does not add the ratings but thanks, very helpful

eToLiveIsToDie
Автор

Thank you, this was really helpful. The FCC answer was awful and poorly explained.

isaiahnguyen-vazquez
Автор

Thanks Mr. Ian
var ratings = watchList.map( film => ({title: film ["Title"], rating: film ["imdbRating"]}));

zken