Answers for "how to change country code to country name in javascript"

0

how to change country code to country name in javascript

let regionNames = new Intl.DisplayNames(['en'], {type: 'region'});
regionNames.of('US');  // "United States"
Posted by: Guest on March-07-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language