JSFiddle - React, Tailwind, and code Playground

by kentaromiura

JavaScript

var test = document.createElement('div');
test.innerHTML = 'ohai';
if(!+"\v1"){
    test.style.cssText = "border:3px dashed black; background-color:pink;";
} else {
    test.setAttribute( 'style',
                   "border:3px dashed black; background-color:pink;");
}
document.body.appendChild(test);