JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" value="dasda" />
CSS
.red {color: red}
JavaScript
$("input").val(function(i,val) {
return val.toUpperCase();
});
<input type="text" value="dasda" />
.red {color: red}
$("input").val(function(i,val) {
return val.toUpperCase();
});