how to make a timer function in js code example
Example 1: how to wait in javascript
function pause(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
//Pause for 1000 milliseconds
pause(1000)
Example 2: settimeout function
setTimeout(function(){
$('#overlay'). modal('hide')
}, 5000);
//#overlay will be the ID of modal which you want to hide or show modal