John Barton (2014-03-14T16:27:58.000Z)
domenic at domenicdenicola.com (2014-03-21T15:08:28.996Z)
I've used es6 modules for several months now and I'm curious to know when I would want to leverage mutable bindings. I guess I need to begin to imagine that variables bound to imports are really a kind of property name of s secret object: ```js import { foo, changeFoo } from "./module1"; console.log(foo); // Oh, yeah, this really means module1.foo changeFoo(); console.log(foo); // Ok, since this is secretly module1.foo, the result '10' makes sense. ```