0
How can i create an alert which comes in 3 seconds and not instant
How can i create an alert which comes in 3 seconds and not instant ... like setInterval ( alert, 3000) But only one time and not all 3 secs. ... :c https://code.sololearn.com/WV3e58cDWSLI/?ref=app
2 Antworten
+ 3
use the setTimeout() method, the sameway you would use setInterval().
It will execute the code one time, instead of repeating it every 3 secs ;)
+ 1
Cool Thanks