Skip to content

Instantly share code, notes, and snippets.

@shakvaal
Last active May 23, 2016 22:58
Show Gist options
  • Save shakvaal/48248713fbb1020517961db13ffe3a59 to your computer and use it in GitHub Desktop.
Save shakvaal/48248713fbb1020517961db13ffe3a59 to your computer and use it in GitHub Desktop.
Coffescript Class Members Cheatsheet
##== Common members and their respective js code ==##
# Recommended codestyle
class Class
static_inner = 'var static_inner'
constructor: ()->
instance_inner = 'var instance_inner'
@instance_own = 'this.instance_own'
instance: 'Class.prototype.instance'
@static: 'Class.static'
# Bad codestyle, don't write classes like this
class Shitty
constructor: ()->
Shitty.static = 'Shitty.static'
Shitty::instance = 'Shitty.prototype.instance'
@static = 'Shitty.static'
Shitty::instance = 'Shitty.prototype.instance'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment