Skip to content

Instantly share code, notes, and snippets.

@fhsinchy
Created May 27, 2020 14:54
Show Gist options
  • Save fhsinchy/9972842818bf5d18a988981d7a1bfd09 to your computer and use it in GitHub Desktop.
Save fhsinchy/9972842818bf5d18a988981d7a1bfd09 to your computer and use it in GitHub Desktop.
let obj1 = {
innerMethod: function () {
innerFunction();
function innerFunction() {
console.log(this);
}
}
};
obj1.innerMethod();
// Window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment