JSFiddle - React, Tailwind, and code Playground

by forgetcolor

JavaScript

function callback() {
    console.log("here2");
}

function tst(callback) {
    console.log('here1');
    if (callback) callback();
}