Eric Elliott (2014-02-20T20:20:54.000Z)
domenic at domenicdenicola.com (2014-02-24T21:29:22.755Z)
Object literals are already a great alternative to switch in JS: ```js var cases = { val1: function () {}, val2: function () {} }; cases[val](); ``` Fall through is more trouble than it's worth, IMO.