Skip to content

Instantly share code, notes, and snippets.

@intothedeep
Created July 21, 2019 18:03
Show Gist options
  • Save intothedeep/46037956f2c32a6ba165cba9bebb1eec to your computer and use it in GitHub Desktop.
Save intothedeep/46037956f2c32a6ba165cba9bebb1eec to your computer and use it in GitHub Desktop.
Understanding of javascript this in function and arrow function
const arrowFunc = () => {
  console.log(this);
};

arrowFunc(); // window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment