how asynchronous wait time in jquery code example
Example 1: js timer wait before functoin
//code before the pause
setTimeout(function(){
//do what you need here
}, 2000);
Example 2: javascript synchronous wait
function delay(n) {
n = n || 2000;
return new Promise(done => {
setTimeout(() => {
done();
}, n);
});
}