Skip to content
Advertisement

Setting interval only once by an event listener, but run other functions every time

See this code:

JavaScript

I want the other functions to run every time the event occurs, but set the interval for sendEnemies only once. How can I do that?

Advertisement

Answer

Use a variable like var sentEnemies = false; outside function handleTouchStart and update it in the function to true the first time and use if(!sentEnemies) for the line to execute only once.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement