weather app javascript code example
Example: build a weather app javascript
// Full tutorial: https://www.youtube.com/watch?v=WZNG8UomjSI
fetch(
"https://api.openweathermap.org/data/2.5/weather?q=" +
city +
"&units=metric&appid=" +
apiKey
)
.then((response) => response.json())
.then((data) => this.displayWeather(data));