how to have sleep in between console logs code example
Example 1: js timer wait before functoin
//code before the pause
setTimeout(function(){
//do what you need here
}, 2000);
Example 2: async sleep javascript
await new Promise(r => setTimeout(r, 2000));