setTimeout(function() { your_func(); }, 5000);
// alert 'cool!' happens once after 3 seconds setTimeout(() => { alert("cool!"); }, 3000);
setTimeout(function(){}, milliseconds);