setInterval(receiveComent, 1000)
With this line, the receiveComent function will be called every second, how to make it to be called only when receiveComent has completely completed its work?
setInterval(receiveComent, 1000)
With this line, the receiveComent function will be called every second, how to make it to be called only when receiveComent has completely completed its work?
Source: https://ru.stackoverflow.com/questions/82962/
All Articles