Skip to content

Instantly share code, notes, and snippets.

@knd
Last active December 11, 2015 01:39
Show Gist options
  • Save knd/4524841 to your computer and use it in GitHub Desktop.
Save knd/4524841 to your computer and use it in GitHub Desktop.
final quest for context and function invocation.
hellKitchen = {
cook: function(cb) {
cb();
}
}
myKitchen = {
knd: function() {
console.log(this);
}
}
hellKitchen.cook(myKitchen.knd); // What would this statement print?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment