samarthagarwal
9/20/2018 - 9:30 AM

IF_05_01_Callback Example

console.log("I will be executed immediately.");

setTimeout(function(){
  console.log("I will be executed after 5 seconds.")
}, 5000);

console.log("I will also be executed immediately.");