Given I have the following inheritance in coffeescript.
I get an error because "mammal" seems to be undefined for myCat.
I read in some other post that I would actually have to make defaults a function to inherit the default values. But how do I do this with coffeescript?
class Animal extends Backbone.Model
defaults:
mammal: true
class Cat extends Animal
defaults:
furColor: "gray"
myCat = new Cat
alert(myCat.get('mammal'))