← All writing
 ·  1 min read

The JavaScript Event Loop

Understanding how the JavaScript event loop works and how setTimeout functions in the call stack.

The JavaScript Event Loop

I received that feeling of excitement, the unlocking of the mind, watching Philip Roberts unpack the JavaScript event loop at JSConf EU 2014. I'd like to share that moment and hopefully the feeling.

Who knew setTimeout(function(){ do_stuff(); }, 0); would be so helpful.