if (k.key == 13) { // ввожу город и нажимаю Enter
fetch(`http://api.openweathermap.org/data/2.5/weather?q=${cityes}&appid=23156883d184497e6026111739757fc6`)
.then(function (resp) { return resp.json() })
.then(function (data) {
console.log(data);
})
}
});