I have a class like this:
class Cow
@feet : 4
constructor: (@name) ->
bes = new Cow "Bessie"
The question is, is it possible to access feet only given bes?
|
I have a class like this:
The question is, is it possible to access feet only given |
|||
|
|
|
You can use the JavaScript
Demo: http://jsfiddle.net/ambiguous/ZfsqP/ I don't know of any special CoffeeScript replacement for |
|||
|
|