Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question

2 Answers

up vote 10 down vote accepted

Just change the == to instanceof

if(cat instanceof Cat)
share|improve this answer
thanks for the specific code help. It will help me with my project in figuring out the object type in an array. – Scoop Mar 1 '12 at 23:04
is there a way though to get the name of the object with guessing and checking? – Scoop Mar 1 '12 at 23:10
Actually this question might be helpful as well. For some reason I never saw your comment @AlexisK stackoverflow.com/questions/332422/… – Sandro May 4 '12 at 15:16
From the response in the question above, the equivalent CoffeeScript could be: jsfiddle.net/SLtTs – Sandro May 4 '12 at 15:22

The way to do this is to check the type of an object using either

instanceof

or

typeof

i.e.

if (obj instanceof Awesomeness){
//doSomethingCrazy();
}

Just as in JavaScript, Coffee Script does not provide any abstraction over these functions

share|improve this answer
is there a way though to get the name of the object with guessing and checking? – Scoop Mar 1 '12 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.