JSFiddle - React, Tailwind, and code Playground

JavaScript

setInterval(changeColor.bind("blue"), 3000);

function changeColor() {
    var prm = "1px solid " + this;
    alert(prm);
}