Skip to content

Instantly share code, notes, and snippets.

@beth
Last active November 21, 2023 17:03
Show Gist options
  • Save beth/3e7eb34ff1a46b674d40ece896c593c2 to your computer and use it in GitHub Desktop.
Save beth/3e7eb34ff1a46b674d40ece896c593c2 to your computer and use it in GitHub Desktop.
framework movie practice

Movie List App

Use any framework you want to create a movie list app! The levels get increasingly difficult and some refactoring may be necessary. Wireframes accompany each level to give you a better idea of what that level should include.

Level 0

  • Display a list of movies from hardcoded data.

level 0

You can use the following data:

var movies = [
  {title: 'Mean Girls'},
  {title: 'Hackers'},
  {title: 'The Grey'},
  {title: 'Sunshine'},
  {title: 'Ex Machina'},
];

When you're done, you can check out Level 1!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment