JSFiddle - React, Tailwind, and code Playground
by Mike Rispoli
JavaScript
$.ajax({
url: 'https://currency-api.appspot.com/api/INR/USD.jsonp',
dataType: "jsonp",
data: {amount: '42098'},
success: function(response) {
if (response.success) {
alert(parseFloat(response.amount).toFixed(2));
}
}
});