Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Last active May 9, 2020 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gavilanch/f6693e7268098c87b9b304f9295f0e70 to your computer and use it in GitHub Desktop.
Save gavilanch/f6693e7268098c87b9b304f9295f0e70 to your computer and use it in GitHub Desktop.
function initializeCounterComponent(boton) {
boton.addEventListener("click", (e) => {
console.log("click JavaScript");
let button = e.target;
button.innerHTML = "Hola";
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment