weather app built with javascript to exercise fetching data from third party apis asynchronously with javascript and using it to displaying weather information about a city
fetch(url)
.then(res=> res.json())
.then(data => console.log(data)).catch(err=>console.log(err))
- search weather information of a city
- error handling incase the user query is invalid
- html
- css
- javascript
- openweather Api