MkdirCode

Got JSON, How to Show it off?

20 Oct 2022 - B-rad

In a galaxy far far away some poor developer is trying to figure out how to display star wars films on a website. Lets build on what we learnt in the previous article.

const baseURL = https://swapi.dev/api/films/

fetch(baseURL)
.then(response => response.json())
.then(data => console.log(data.results));