Answers for "javascript default timeout"

7

javascript set timeout

setTimeout(function(){
 	console.log("hello");
}, 3000); //wait for atleast  3 seconds before console logging
Posted by: Guest on July-10-2020
3

setting timeout in javascript

setTimeout(function() {
            window.location = 'display_data.php';
        }, 3000);
Posted by: Guest on October-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language