Last active
May 23, 2016 22:58
-
-
Save shakvaal/48248713fbb1020517961db13ffe3a59 to your computer and use it in GitHub Desktop.
Coffescript Class Members Cheatsheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##== 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