Created
August 16, 2022 23:56
-
-
Save szaranger/a3ccf355e246abad989e91f3fa7b756c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// This will also become a global variable as arrow functions | |
// do not have a contextual `this` and instead use a lexical `this` | |
const hey = () => { | |
this.foo = "Hello world!"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment