Buat bendera negara di JS
function getFlagEmoji(countryCode) {
const codePoints = countryCode
.toUpperCase()
.split('')
.map(char => 127397 + char.charCodeAt());
return String.fromCodePoint(...codePoints);
}
console.log(getFlagEmoji("EU"));
mukashwasti_