How can I find that class of an object once it has been instantiated?
class Cat
constructor: (@name) ->
class Dog
constructor: (@name) ->
cat = new Cat "Kitty"
dog = new Dog "Doggy"
if (cat == Cat) <- I want to do something like this
|
How can I find that class of an object once it has been instantiated?
|
|||
|
|
|
Just change the
|
|||||||||||
|
|
The way to do this is to check the type of an object using either
or
i.e.
Just as in JavaScript, Coffee Script does not provide any abstraction over these functions |
||||
|