Last active
August 4, 2017 07:22
-
-
Save Sihui/9c1c944334cdb52fe89834393acbac74 to your computer and use it in GitHub Desktop.
Design Pattern: Iterator and Movie Collections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| amazon_movies = { | |
| 0 => { | |
| title: 'Mission: Impossible - Rogue Nation', | |
| year: '2015', | |
| director: 'Christopher McQuarrie', | |
| genre: 'Thriller/Actio', | |
| length: '2h 11m' | |
| }, | |
| 1 => { | |
| title: 'The Hunger Games: Mockingja', | |
| year: '2014', | |
| director: 'Francis Lawrence', | |
| genre: 'Fantasy/Science fiction film', | |
| length: '2h 3m' | |
| }, | |
| 2 => { | |
| title: 'Room', | |
| year: '2015', | |
| director: 'Lenny Abrahamson', | |
| genre: 'Drama film/Thriller', | |
| length: '1h 58m' | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment