JSFiddle - React, Tailwind, and code Playground

by Kevin Faulhaber

JavaScript

function theTimeOutClass()
{
    this._timeout = function(){
        setTimeout(function(){
            comparePanel();
        }, 3000);
    };   
}
function comparePanel()
{
     alert('I\'m comparing panels! ');
}
var toc = new theTimeOutClass();
toc._timeout();