keterlambatan dalam javascript
setTimeout(function() {
//your code here
}, 1000);
Tender Toad
setTimeout(function() {
//your code here
}, 1000);
var delayInMilliseconds = 1000; //1 second
setTimeout(function() {
//your code to be executed after 1 second
}, delayInMilliseconds);
setTimeout(function(){
//code goes here
}, 2000); //Time before execution
//single event i.e. alarm, time in milliseconds
var timeout = setTimeout(function(){yourFunction()},10000);
//repeated events, gap in milliseconds
var interval = setInterval(function(){yourFunction()},1000);
await new Promise(resolve => setTimeout(resolve, 1000));
export const delay = async (): Promise<void> => {
await new Promise((resolve) => setTimeout(resolve, 100))
}