JSFiddle - React, Tailwind, and code Playground
JavaScript
var input = document.createElement('textarea');
input.setAttribute('maxLength', 1);
input.value = 'ab';
alert(input.value.length);
alert(input.getAttribute('maxLength'));