Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Last active December 17, 2015 04:09
Show Gist options
  • Save bittersweetryan/5548350 to your computer and use it in GitHub Desktop.
Save bittersweetryan/5548350 to your computer and use it in GitHub Desktop.
var a = {
foo : function(){
console.log ( this );
var bar = function(){
console.log( this );
};
bar();
}
};
a.foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment