Answers for "node server.timeout"

5

settimeout node js

setTimeout(function () {
    console.log("5 secondes"); 
}, 5000); 
console.log("now");
Posted by: Guest on April-03-2020
0

setTimeout() nodejs

function myFunc(arg) {
  console.log(`arg was => ${arg}`);
}

setTimeout(myFunc, 1500, 'funky');
Posted by: Guest on April-22-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language