Mark Everitt (2014-08-25T10:23:23.000Z)
domenic at domenicdenicola.com (2014-08-26T18:32:15.362Z)
I got my lack-of-sleep addled head around this by realising that an arrow function performs like an immediately bound function expression: ```js var test = (function (){ // Do stuff with this... }).bind(this); ``` i.e. Domenic's second example function. Then it was obvious that arrow functions are not really throwing anything new into the mix with regard to bind, apply, and call.