dasunpubudumal
7/8/2018 - 2:29 PM

Asynchronous Demonstration

Asynchronous Demonstration

console.log("Program Started!");

setTimeout(() => {
  console.log("In the middle of the Program!");
}, 2000);

console.log("Program Stopped!");