JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="meuInput">
JavaScript
var input = document.querySelector('#meuInput');
input.addEventListener('keyup', function() {
this.value = this.value + 0;
});
<input type="text" id="meuInput">
var input = document.querySelector('#meuInput');
input.addEventListener('keyup', function() {
this.value = this.value + 0;
});