show/hide this revision's text 2 Edited for code snippet width

I don't think this is possible in Javascript, due to the prototype-oriented nature of the language. There are several things you can do to determine whether an object is of an existing class that you know, such as:

if (a.constructor == Poop) {
     alert("This will work, but I don't really want any Poop.");
}

However, that doesn't really work for determining an unknown object's class. There's other prototype things you can do to check for class that involve toString(), but they only work for built-in objects, not custom classes, and this is a drawback of prototyping that's not specific to MooTools.

If you check out the 5th Edition of Javascript, The Definitive Guide, page 174, chapter 9.7, there's a nice discussion on it there. Basically the recommendation is to populate your custom classes with a classname property, and override the default base Object class toString() method to check this property when you're calling it on a custom class.

show/hide this revision's text 1

I don't think this is possible in Javascript, due to the prototype-oriented nature of the language. There are several things you can do to determine whether an object is of an existing class that you know, such as:

if (a.constructor == Poop) { alert("This will work, but I don't really want any Poop."); }

However, that doesn't really work for determining an unknown object's class. There's other prototype things you can do to check for class that involve toString(), but they only work for built-in objects, not custom classes, and this is a drawback of prototyping that's not specific to MooTools.

If you check out the 5th Edition of Javascript, The Definitive Guide, page 174, chapter 9.7, there's a nice discussion on it there. Basically the recommendation is to populate your custom classes with a classname property, and override the default base Object class toString() method to check this property when you're calling it on a custom class.