Whatever message this page gives is out now! Go check it out!
IsInstanceOf(object, typeName)| Parameter | Description |
object | The CFC instance or Java object that you are testing |
typeName | The name of the interface, component, or Java class of which the object might be an instance |
<cfscript>
output = isInstanceOf("component","c1");
output1 = isInstanceOf("java","java.system.lang");
writeoutput(output & "<br>");
writeoutput(output1);
</cfscript>