latentflip / loupe

Visualizing the javascript runtime at runtime

Home Page:http://latentflip.com/loupe

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stack not clear yet Event loop kicks in

innokria opened this issue · comments

console.log('first call');
setTimeout(function timeout() {
console.log("second call");
}, 5000);
alert('a')
setTimeout(function tim() {
console.log("second scoend call");
}, 2000);

console.log("third call");


Note: alert call is still in stack but then event loop kicks in and execute timeout

It's tripping up on alert which is unsupported in the runtime.