Skip to content

Instantly share code, notes, and snippets.

@hannesvdvreken
Created February 14, 2015 20:51
Show Gist options
  • Save hannesvdvreken/e2e5d8249a9e9176640c to your computer and use it in GitHub Desktop.
Save hannesvdvreken/e2e5d8249a9e9176640c to your computer and use it in GitHub Desktop.
function helper(arg1, callback, context) {
// do something…
callback.call(context, data);
}
obj = {
name: 'John Doe',
bar: function() {
helper('foo', function(data) {
console.log(this);
}, this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment