Advertisement
smeacham

exercise 2-2a.js

Jul 7th, 2016
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. db.movies.insert({ title: 'Fight Club', writer: 'Chuck Palahniuk', year: 1999, actors: ["Brad Pitt", "Edward Norton"]});
  2. db.movies.insert({title: 'Pulp Fiction', writer: 'Quentin Tarantino', year: 1994, actors: ['John Travolta', 'Uma Thurman']})
  3. db.movies.insert({ title: 'Inglorious Basterds', writer: 'Quentin Tarantino', year: 2009, actors: ['Brad Pitt', 'Diane Kruger', 'Eli Roth']})
  4. db.movies.insert({ title: 'The Hobbie: An Unexpected Journey', writer: 'J.R.R. Tolkein', year: 2012, franchise: 'The Hobbit'});
  5. db.movies.insert({ title: 'The Hobbit: The Battle of the Five Armies', writer: 'J.R.R. Tolkein', year: 2012, franchise: 'The Hobbit',synopsis: 'Bilbo and Company are forced to engage in a war against an array of combatants and keep the Lonely Mountain from falling into the hands of a rising darkness.'})
  6. db.movies.insert({title: 'The Hobbit: The Desolation of Smaug', writer: 'J.R.R. Tolkein', year: 2013, franchise: 'The Hobbit'})
  7. db.movies.insert({title: "Pee Wee Herman's Big Adventure"});
  8. db.movies.insert({title: "Avatar"})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement