JSFiddle - React, Tailwind, and code Playground

by Andrea Forni

JavaScript

var fun1 = function(callback) {
	console.log('Before');
    setTimeout(function() {
        callback();
    }, 0);
    console.log('After');
};

fun1(function() {
    console.log('Inside callback');
});