IsNull
Last updated
Was this helpful?
Determine whether a given value or variable reference is null.
IsNull(object=[any])object
any
true
Value to test for null.
Returns true if the given object is null or the given expressions evaluates to null; Returns false is otherwise.
isNull( javaCast( "null", "" ) );
Result: true
v1 = "test";
writeDump( isnull( v1 ) ); // false
v2; // Defining empty variable or v2=nullValue();
writeDump( isnull( v2 ) );
// true
Last updated
Was this helpful?
Was this helpful?
