inputFlag.src = country ? country.flag : '';
console.log(inputFlag.src); // РЕЗУЛЬТАТ https://fiddle.jshell.net/_display/
<input type="text" value="+7" id="inputcode">
inputCode.addEventListener('input', checkCountry);
window.onload = checkCountry;
function checkCountry() {
const country = countries.find(n => !this.value.indexOf(n.code));
inputFlag.src = country ? country.flag : '';
}
https://developer.mozilla.org/ru/docs/Web/API/Elem...
///
Спасибо еще раз!