Skip to content

Instantly share code, notes, and snippets.

@filiperdt
Created February 18, 2022 20:51
Show Gist options
  • Save filiperdt/e75b1eff838a63d2b24b2030c621f76c to your computer and use it in GitHub Desktop.
Save filiperdt/e75b1eff838a63d2b24b2030c621f76c to your computer and use it in GitHub Desktop.
Página duplicando conteúdo em loop inifnito. addEventListener executa a função antes de ser chamada
function teste(){
console.log("teste");
}
addEventListener("click", teste());
*****************************************************
SOLUÇÃO:
addEventListener deve receber uma função (ou um EventListener) no segundo parâmetro.
Mas ao fazer teste() (com os parênteses), você está chamando a função (executando-a).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment