Suppose that for every response from an API, i need to map the value from the response to an existing json file in my web application and display the value from the json. Wh
{ "country": [ "INDIA", "USA" ], "codes": [ "IN", "US" ] } // countryInfo.json const { country, code } = require('./countryInfo.json'); console.log(country[0]); // "INDIA" console.log(code[0]); // "IN"