Returns whether the specified value is null.
Syntax
isNull( object )
object.isNull( )
Parameters
object
|
the object to check.
|
Returns
boolean
|
true if object is an instance of null.
false if object is not an instance of null.
|
Example
if isNull( obj ) then
println( "is instance of null" )
end
|