README.md 195 B

const button = document.getElementById("button"); const output = document.getElementById("output");

button.addEventListener("click", function() {

output.textContent = "Котакбас";

});