JSFiddle - React, Tailwind, and code Playground
by nicocube
JavaScript
function alertMsg() {
alert("plop");
}
// this work
setTimeout(alertMsg,1000);
// this fail
setTimeout('alertMsg',2000);
// this fail again
setTimeout('alertMsg()',3000);