JSFiddle - React, Tailwind, and code Playground

by sarathsprakash

JavaScript

function popup(text)
{
    alert(text);
    setInterval(function(){ alert(text); }, 1000);
    return false;
}
popup("You are done now!");