Created
October 11, 2022 14:02
-
-
Save jim-clark/2a4ab14283ab23bcadf9db2388c55a95 to your computer and use it in GitHub Desktop.
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
exports.performers = [ | |
{name: 'Natalie Portman', born: '06-09-1981'}, | |
{name: 'Kevin Bacon', born: '07-08-1958'}, | |
{name: 'Tom Cruise', born: '07-03-1962'}, | |
{name: 'Brad Pitt', born: '12-18-1963'}, | |
{name: 'Emma Watson', born: '04-15-1990'}, | |
{name: 'Carrie Fisher', born: '10-21-1956'}, | |
{name: 'Mark Hamill', born: '09-25-1951'}, | |
{name: 'Harrison Ford', born: '07-13-1942'}, | |
{name: 'Jodie Foster', born: '11-19-1962'}, | |
{name: 'Matthew McConaughey', born: '11-04-1969'}, | |
{name: 'James Woods', born: '04-18-1947'}, | |
{name: 'Anne Hathaway', born: '11-12-1982'}, | |
{name: 'Bill Murray', born: '09-21-1950'}, | |
{name: 'Chevy Chase', born: '10-08-1943'}, | |
{name: 'Rami Malek', born: '05-12-1981'} | |
]; | |
exports.movies = [ | |
{title: 'Contact', releaseYear: 1997, mpaaRating: 'PG', nowShowing: false}, | |
{title: 'Star Wars - A New Hope', releaseYear: 1977, mpaaRating: 'PG', nowShowing: false, | |
reviews: [{content: 'The one that started it all!', rating: 5}] | |
}, | |
{title: 'Interstellar', releaseYear: 2014, mpaaRating: 'PG-13', nowShowing: true, | |
reviews: [{content: 'A fantastic sci-fi mind blower!', rating: 5}] | |
}, | |
{title: 'Caddyshack', releaseYear: 1980, mpaaRating: 'R', nowShowing: false, | |
reviews: [{content: 'Low-budget senseless comedy', rating: 4}, {content: 'Should not be the classic it is.', rating: 2}] | |
}, | |
{title: 'Bohemian Rhapsody', releaseYear: 2018, mpaaRating: 'PG-13', nowShowing: true} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment