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 :
SetInterval(() => {
console.log("hellloo .... , how are you !?")
}, 3000);