As part of bootstraper script i am writing for a html template, i am required to use an API for determining names of various countries corresponding to there alpha-3 codes, like CHN for China and GBR for Greate Britian.
I would like to know if there is some JQuery method that will allow me to "iterate" over an array of these alpha-3 country codes and make a GET request to the remote server for the country name corresponding to each code.
Is there a such a method ? Essentially what i am looking for is the web browser equivalent of Node.js's async.forEachSeries() function.