Weather app

weather app Live Demo

description

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))

features

  • search weather information of a city
  • error handling incase the user query is invalid

Built with