IsNull
Method Signature
IsNull(object=[any])Arguments
Argument
Type
Required
Description
Default
Examples
isNull Example
isNull( javaCast( "null", "" ) );
Additional Examples
v1 = "test";
writeDump( isnull( v1 ) ); // false
v2; // Defining empty variable or v2=nullValue();
writeDump( isnull( v2 ) );
// true
Related
Last updated
Was this helpful?
