JSFiddle - React, Tailwind, and code Playground

JavaScript

try {
	var el = document.createElement("p");
	el.className = "a ";
	el.classList.replace("a", "a");
	document.body.textContent = el.className.length;
} catch (e) {
  document.body.textContent = e;
}