psuedo-pausing execution with setTimeout

Breakpoints: A breakpoint is an intentional stopping or pausing place in a script. Use breakpoints in DevTools to debug JavaScript code, DOM updates, and network calls: https://developer.chrome.com/devtools/docs/javascript-debugging

console.log( 'before pause' );
setTimeout( function() { console.log( 'after pause' ); }, 10000);