JSMinds
It is Recommended to practice while you learn

Set Timeout

Executes a function, after waiting a specified number of milliseconds. This technique allows a function to call another function. A callback function can run after another function has finished .


Example :

function hello() {
console.log("hellloo .... , how are you !? ");
}
setTimeout(hello,5);