Skip to content

Instantly share code, notes, and snippets.

@danott
Created October 22, 2014 17:05
Show Gist options
  • Save danott/9ad619301c352d93afd2 to your computer and use it in GitHub Desktop.
Save danott/9ad619301c352d93afd2 to your computer and use it in GitHub Desktop.
Fat arrows
class MyThing
value: "My thing's value"
skinny: ->
console.log @value
fat: =>
console.log @value
otherThing =
value: "Other's value"
myThing = new MyThing
myThing.skinny()
myThing.skinny.bind(otherThing)()
myThing.fat()
myThing.fat.bind(otherThing)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment