Basic Movie Finder
- 3 Devlogs
- 2 Total hours
I'm just trying to learn how to use APIs, async/await, fetch, promises in JS
I'm just trying to learn how to use APIs, async/await, fetch, promises in JS
I added the search 10 at a time feature so now you get a grid of movies that are related to some kind of key word. It was basically the same thing as the title search thing but you use s= instead of t= for omdb look up, and also you have to iterate through the array that the search feature returns (which is inside a parent obj 😅)
Added a second page for movie searching but by 10s based on the omdb option to search 10 (s=) instead of searching just by title (t=); made sure that dark mode still works on this page and applied all necessary styling. Also added a navbar. Also made buttons more clickable with cursor: pointer; and like a transform: translateY(-2px); styling like that
I kinda forgot to do a lot of devlogs but I created a basic movie finder. This was my first time using a web API (omdb) and using async/await functions, dabbling in promises, fetch API, etc in JS. It was a lot of fun!