JSFiddle - React, Tailwind, and code Playground
by forgetcolor
JavaScript
function callback() {
console.log("here2");
}
function tst(callback) {
console.log('here1');
if (callback) callback();
}
by forgetcolor
function callback() {
console.log("here2");
}
function tst(callback) {
console.log('here1');
if (callback) callback();
}