Project - 12
Project 12: Movie Watchlist
Build a personal movie watchlist where users can add movies (title + rating), mark them as watched, and filter between all movies and watched ones. Everything saved with localStorage.
👀 Show Example Solution
<input type="text" id="title" placeholder="Movie title"> <input type="number" id="rating" placeholder="Rating (1-10)"> <button onclick="addMovie()">Add to Watchlist</button> <ul id="movieList"></ul> <script> // Add, mark watched, filter, localStorage </script>
