If you liked the video from the last quickies post you may also enjoy Asynchrony: Under the Hood, a talk from @codebytere that covers similar territory. The presentation style is a bit more formal, but that suits the density of the information being transmitted. You get the event loop, the microtask queue, and an overview of generators and async/await in circa 2018 javascript.
This was the first I’d heard of Javascript’s microtask queue, which lead to my discovery of this Tasks, microtasks, queues and schedules article, which covers the behavior of said queue in browsers circa August 2015. My current understanding of the microtask queue is it’s a second queue of jobs that will run after a single tick of the event loop, and will empty out completely before the next tick of the event loop (vs. running one job per tick). Its main purpose seems to be wrangling the promise of javascript’s Promises API.
The attention that software engineering, as a profession, is paying to these sorts of async programming concepts is laudable, but for information systems programming I think PHP got it right: Don’t give end-users programmers access to complex threading or async APIs, and don’t make them them think too hard about an async model. Let the asynchronous aspects be handled by the systems running the code itself.