scrimba
The Weekly Web Dev Challenge
The Weekly Web Dev Challenge: Film Database ๐Ÿฟ
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

The Weekly Web Dev Challenge: Film Database ๐Ÿฟ
AboutCommentsNotes
The Weekly Web Dev Challenge: Film Database ๐Ÿฟ
Expand for more info
index.js
run
preview
console
// In this challenge, I want you to create a Dashboard for all our films. Each film should be
// displayed in our browser, in a box of its own with an image of the film of your choice, similar // to how it would
// look on Netflix.
// Please solve this using the film array, as this is an array exercise. Do not hardcode the names,
// even though it might be tempting!

const films = ['Jaws', 'Aliens', 'Bad Santa', 'Casablanca', 'Ghost', 'Twister', 'legally Blonde', 'Elf', 'Zoolander']

// your code goes here





// hint: use a for loop to create the boxes and add information to them.

//level up:
//1. Are you able to add your own personal rating to each film card too?

Console
/index.html
-3:23