Doors open at 5:30. I will kickoff presentation at 6:15.
Jimmy John's sandwiches will be provided to everyone by Bitovi.
========= If you'd like to understand how observable-based JavaScript frameworks (like Ember, Knockout, and Vue) work, join us Monday Dec 4th.
Specifically, we'll be building up our understanding of how observables and computed values work. While there are many forms of observables, CanJS's observables allow you to listen to when their value changes with the `.on` function as follows:
Computes are observables that combine other source observables. When the source observables change, computes automatically update themselves. In the following example, CanJS's `Compute`s are used to create a `fullName` compute that updates when either `first` or `last` change: