JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="myInput">
<button onclick="updateText()">Натисни Ме</button>
JavaScript
let count = 0;
function updateText() {
count++;
document.getElementById('myInput').value = `SC x ${count}`;
}