JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<body>
<input maxlength=3 id=foo>
</body>
</html>
JavaScript
var input = document.getElementById("foo");
input.setAttribute("maxlength", 0);
<html>
<body>
<input maxlength=3 id=foo>
</body>
</html>
var input = document.getElementById("foo");
input.setAttribute("maxlength", 0);