Skip to content

Instantly share code, notes, and snippets.

@kavitshah8
Created February 22, 2016 18:40
Show Gist options
  • Save kavitshah8/8c741796664a98c8f21f to your computer and use it in GitHub Desktop.
Save kavitshah8/8c741796664a98c8f21f to your computer and use it in GitHub Desktop.
arrow functions
function ViewSomething() {
this.a = 42
this.click = function() => {
alert(this.a) // undefined
}
this.click1 = () => {
alert(this.a) // 42
}
}
// also the arguments key word is different
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment