JSFiddle - React, Tailwind, and code Playground
JavaScript
function some_ajax_meth(callback_when_done) {
// Fake ajax
setTimeout(function () {
callback_when_done('broom');
}, 1000);
}
some_ajax_meth(function (return_code) {
alert(return_code);
});