0
I want to make bots for discord and anyone help me out of assigning a variable time limits like 5000 ms
4 Answers
+ 1
how about setTimeout ?
+ 1
here
the function given will be executed after 5000ms
var accept = true;
setTimeout(function(){
accept=false;
}, 5000);
0
Yes but I didn't no the code of setatimeout can anyone tell me
0
Thanks for the help