Created
May 28, 2020 16:26
-
-
Save C5H8NNaO4/24fa7ee87b8f099f6de3811f97c8d44c to your computer and use it in GitHub Desktop.
This
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const foo = { | |
bar: function () { | |
console.log (this); | |
} | |
} | |
const bar = foo.bar; | |
foo.bar(); | |
bar(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment