Skip to content

Instantly share code, notes, and snippets.

@szaranger
Created August 16, 2022 23:56
Show Gist options
  • Save szaranger/a3ccf355e246abad989e91f3fa7b756c to your computer and use it in GitHub Desktop.
Save szaranger/a3ccf355e246abad989e91f3fa7b756c to your computer and use it in GitHub Desktop.
// 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