Skip to content

Instantly share code, notes, and snippets.

@chrislaughlin
Created January 2, 2017 21:56
Show Gist options
  • Save chrislaughlin/885cd21ffa75f6975a2ad19a8076ce4d to your computer and use it in GitHub Desktop.
Save chrislaughlin/885cd21ffa75f6975a2ad19a8076ce4d to your computer and use it in GitHub Desktop.
Window.event
onClick: () => {
console.log(Window.event);
}
//Bad
onClick: (event) => {
console.log(event);
}
//Good
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment