Posts

Showing posts with the label Country code

International Country Code

Image
Country Code Finder Country Code Finder Enter Country Name: Find document.getElementById("findBtn").addEventListener("click", function() { const countryName = document.getElementById("countryName").value; const resultElement = document.getElementById("result"); if (countryCodes.hasOwnProperty(countryName)) { const countryCode = countryCodes[countryName]; resultElement.innerHTML = ` ${countryName}'s country code is ${countryCode} `; } else { resultElement.innerHTML = ` Country not found. Please check the spelling and try again. `; } });