JavaScript

Guerino antonini
1 min readOct 4, 2021

My personal journey learning javascript was everything I thought it wasn't going to be. My thought of what problem-solving means is nowhere near what kind of problem-solving skills you need to learn any coding language, as a matter of fact, my first language just happened to be javascript. Going through the boot camp lessons only taught me so much. It taught me the concepts I needed to know about the language and coding in general, but the possibilities of javascript are so vast it made my head spin. Working my way to the project phase was an accomplishment on its own and once I had an idea I thought code would just start coming from my fingertips to my keyboard and on to my editor, boy was I wrong. Error after error I was faced with and had to overcome. My biggest hurdle was with getting the specific data I needed from the API I was using. Realizing that I could pass through a key with its values as an argument made it all possible.

function fetchfilms() {

fetch(“https://swapi.dev/api/films")

.then(resp => resp.json())

.then(json => renderFilm(json.results))

}

--

--