we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "check if function start working javascript"
Alessia
07 Jan 2021
1var functionIsRunning = false;
2
3function myFunction() {
4    if (!functionIsRunning) {
5        functionIsRunning = true;
6    }
7}