 
          by Rob Richardson
 
          Rob Richardson is a software craftsman building web properties in ASP.NET and Node, React and Vue. He's a frequent speaker at conferences, user groups, and community events, and a diligent teacher and student of high quality software development. You can find this and other talks on https://robrich.org/presentations and follow him on twitter at @rob_rich.
relating to or being a computer operation that can occur independently, without waiting for another event.
source: dictionary.com/browse/asynchronous| Client-side:Do things in parallel source: http://benhoff.net/qt-interface-design.html | Server-side:Yield while I'm waiting source: https://itxdesign.com/vps-vs-shared-hosting/ | 
 source: https://hacks.mozilla.org/2017/06/avoiding-race-conditions-in-sharedarraybuffers-with-atomics/
          source: https://hacks.mozilla.org/2017/06/avoiding-race-conditions-in-sharedarraybuffers-with-atomics/
        Think synchronous
Run asynchronous
async & await keywords
Clearly stolen inspired by C# and JavaScript
Identical syntax to C# and JavaScript
Compiler builds a resumable state machine
Think synchronously. Run asynchronously.