JSFiddle - React, Tailwind, and code Playground

by oroce

JavaScript

var bool = true;
setInterval(function(){
    document.body.style.backgroundColor = bool ? "fuchsia" : "green";
    bool = !bool;
}, 2000 );