Created
February 18, 2022 20:51
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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