Object Functions

Last update: 2023-01-26
  • Created for:
  • Experienced
    Developer

Is null

The isNull function determines if an object reference does not exist.

Syntax

{%= isNull(object) %}

Example

The following operation checks if the person’s home address does not exist.

{%= isNull(person.homeAddress) %}

Is not null

The isNotNull function determines if an object reference exists.

Syntax

{%= isNotNull(object) %}

Example

The following operation checks if the person’s home address exists.

{%= isNotNull(person.homeAddress) %}

On this page