Answers for "when a function takes a long time to execute, javascript waits for the execution to get over and then moves to the next line true or false"

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 "when a function takes a long time to execute, javascript waits for the execution to get over and then moves to the next line true or false"

Code answers related to "Javascript"

Browse Popular Code Answers by Language