Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created March 29, 2015 15:45
Show Gist options
  • Save vgaltes/1786e077d8c161c097c4 to your computer and use it in GitHub Desktop.
Save vgaltes/1786e077d8c161c097c4 to your computer and use it in GitHub Desktop.
This example 3
<script>
var aObject = {
aFunction: function(){
console.log(this);
var that = this;
var anotherFunction = function(){
console.log(that);
var yetAnotherFunction = function(){
console.log(that);
}();
}();
}
}
aObject.aFunction();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment