Skip to content

Instantly share code, notes, and snippets.

@biilmann
Created April 4, 2013 04:59
Show Gist options
  • Save biilmann/5307936 to your computer and use it in GitHub Desktop.
Save biilmann/5307936 to your computer and use it in GitHub Desktop.
// Arrow Function
var hello = () => console.log("Hello")
// Arrow Function with binding identifier
var hello = hello() => console.log("Hello")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment