javascript wait 1 second
setTimeout(function(){
console.log("Ready")
}, 1000);
javascript wait 1 second
setTimeout(function(){
console.log("Ready")
}, 1000);
javascript delay some seconds
let ms = 50; // This is the amount of ms you want your code to wait!
let start = new Date().getTime();
let end = start;
while(end < start + ms) {
end = new Date().getTime();
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us