Which code would you use to access the Irish flag?
<pre><code>var flagsJSON = '{ "countries" : [' + '{ "country":"Ireland" , "flag":"🇮🇪" },' + '{ "country":"Serbia" , "flag":"🇷🇸" },' + '{ "country":"Peru" , "flag":"🇵🇪" } ]}';var flagDatabase = JSON.parse(flagsJSON);</code></pre>
中等javascriptweb-development