Last updated
Was this helpful?
Last updated
Was this helpful?
Determines whether a value is an object.
True conditions are:
Box Class instances are "objects"
All other classes that represent a Boxlang type are NOT "objects" (query, array, struct, XML, etc)
These JDK classes which are used for "simple" BoxLang types are also not "objects" (String, Number, Boolean)
Every other Java class is an "object"
Returns true if the parameter is a BL object. The BL object here is a Java object.
Result: true
Returns false if the parameter is any data type other than a BL object
Result: false
value
any
true
The value to test