let url = "http://api.openweathermap.org/data/2.5/weather?q=Ho%20Chi%20Minh%20City&appid=dca857e6150b7d63058ab56218cb16c1"; fetch(url).then(res => res.json()).then(data => { console.log(data); });