#Introduction to RxJS
Presented by Corinna Cohn February 17, 2016, IndyJS
##JavaScript is Asynchronous
JavaScript has an execution stack. Events are added to the stack and are executed in the stack order.
Callbacks for setTimeout
, AJAX calls, or DOM events can happen at pretty much any time.