Answers for "wait() in js"

5

wait for time javascript

//code before the pause
setTimeout(function(){
    //do what you need here
}, 2000);
Posted by: Guest on November-28-2019
10

wait javascript

wait(ms) {
        return new Promise(resolve => setTimeout(resolve, ms));
 }
Posted by: Guest on June-19-2020
0

pauze js

setTimeout(() => {  console.log("2000 milliseconds later!"); }, 2000);
Posted by: Guest on December-16-2020
3

wait until a function finishes javascript

function firstFunction(_callback){
    // do some asynchronous work
    // and when the asynchronous stuff is complete
    _callback();    
}

function secondFunction(){
    // call first function and pass in a callback function which
    // first function runs when it has completed
    firstFunction(function() {
        console.log('huzzah, I\'m done!');
    });    
}
Posted by: Guest on February-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language