JSFiddle - React, Tailwind, and code Playground

HTML

<div class="country">
                <span class="section-label">
                    Country/Region
                </span>
                <div>IT
                </div>
            </div>

JavaScript

$(document).ready(function() {  
   					var text = $(".country div").html();
   	        text = text.replace('CA', 'Canada')
            text = text.replace('DE', 'Germany')
            text = text.replace('PO', 'Poland')
            text = text.replace('SG', 'Singapore')
            text = text.replace('UK', 'United Kingdom')
            text = text.replace('US', 'United States')
            text = text.replace('DK', 'Denmark')
            text = text.replace('MX', 'Mexico')
            text = text.replace('IT', 'Italy')
});