Skip to content

Instantly share code, notes, and snippets.

@kikar
Created March 11, 2016 00:14
Show Gist options
  • Save kikar/78a196b8ef830c4e4327 to your computer and use it in GitHub Desktop.
Save kikar/78a196b8ef830c4e4327 to your computer and use it in GitHub Desktop.
function foo() {
console.log(arr.map( i => i + this.a ));
}
var arr = [1,2,3];
var obj = {
a: 2,
foo: foo
};
obj.foo(); // [3, 4, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment