September 2017
Intermediate to advanced
216 pages
6h 8m
English
The application data that we will be rendering is a list of Black Mirror episodes. Each episode is a map with some information about the episode. Here's a truncated version of the list to give you an idea of what it looks like as an Immutable.js collection:
const episodes = List.of( Map.of( 'title', 'The National Anthem', 'date', 'December 4 2011', 'director', 'Otto Bathurst', 'rating', 8.0 ), Map.of( 'title', 'Fifteen Million Merits', 'date', 'December 11 2011', 'director', 'Euros Lyn', 'rating', 8.3 ), Map.of( 'title', 'The Entire History of You', 'date', 'December 18 2011', 'director', 'Brian Welsh', 'rating', 8.7 ), Map.of( 'title', 'Be Right Back', 'date', 'February 1 2013', 'director', 'Owen Harris', 'rating', 8.2
Read now
Unlock full access