NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
Usage:
countryCode["DE"] // "Germany"
Example:
nationCode = "de"
countryCode[nationCode] // undefined
Solution:
nationCode = nationCode.toUpperCase()
countryCode[nationCode] // "Germany"
Rating: 0