Skip to content

Instantly share code, notes, and snippets.

@synaptiko
Last active December 14, 2015 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save synaptiko/5130458 to your computer and use it in GitHub Desktop.
Save synaptiko/5130458 to your computer and use it in GitHub Desktop.
Two interesting examples from http://ashkenas.com/dotjs/ which I don't know about
# ... with if/else
class Pirate
if century > 1700
loot: ->
say 'Give me the gold!'
else
loot: ->
say 'Dame el oro!'
# ... and with wrapped functions
class Pirate
loot: heartily ->
say 'Give me the gold!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment