158
rated 0 times
[
160]
[
2]
/ answers: 1 / hits: 27573
/ 15 Years ago, sun, february 8, 2009, 12:00:00
Hey all, I am trying to test if the argument passed into my function is a class name so that I may compare it to other classes using instanceof.
For example:
function foo(class1, class2) {
// Test to see if the parameter is a class.
if(class1 is a class)
{
//do some kind of class comparison.
if(class2 is a class)
{
if(class1 instanceof class2)
{
//...
}
}
else
{
//...
}
}
else
//...
}
Is this possible? I am having trouble googleing an answer.
More From » javascript