let city = 'Москва';
let apiKey = "6c273cbb2593e6efce1a4c12e3db2db5";
fetch(`http://api.openweathermap.org/data/2.5/weather?q=${city}&lang=ru&appid=${apiKey}`)
.then(function (resp) {
return resp.json();
})
.then(function (data) {
let cityName = document.querySelector(".City").innerHTML = data.name ;
let inputName = document.querySelector(".input")
let temperature = (document.querySelector(".temperature").innerHTML = Math.floor(data.main.temp - 273) + "°");
let disclaimer = (document.querySelector(".disclaimer").textContent = data.weather[0]["description"]);
let ico = (document.querySelector(".ico").innerHTML = `<img src="https://openweathermap.org/img/wn/${data.weather[0]["icon"]}@2x.png">`);
})
.catch(function () {});
есть код. который определяет погоду по городу, как мне сделать что бы я вводил в инпут данные и он менял мне данные value в переменной city
я пытался сделать так
city = inputName.value но не получилось