ga-wdi-boston / js-function-context-this

Other
0 stars 126 forks source link

Add example of setting this for array methods #6

Closed gaand closed 8 years ago

gaand commented 8 years ago

Overriding default this (global or window) in array methods. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach

Note: arrow functions bind this lexically, so cannot make use of passing a thisArg to an array method.

RealWeeks commented 8 years ago

added