JSFiddle - React, Tailwind, and code Playground

by gwwar

HTML

<div id="target">Hello</div>

JavaScript

var element = document.getElementById("target");
var property = "backgroundColor";
element.style[property] = "blue";