JSFiddle - React, Tailwind, and code Playground

by rikazavr

HTML

<div id="wow">
</div>

CSS

div {
  /* margin-top: 30px; */
  margin: 30px;
  width: 100px;
  height: 100px;
  background-color: #c4f3c6;
}

JavaScript

let wow = document.getElementById("wow");

var input = document.createElement('input');
input.setAttribute('checked', 'checked');

console.log(input.checked);