JSFiddle - React, Tailwind, and code Playground

JavaScript

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