Types

Is Null

Returns true if a value is null.

Expression:

ISNULL(value: any)

Return:

boolean

Example of usage:

ISNULL("Are my pockets full?")

Return value:
false

Is String

Returns true if a value is a string.

Expression:

ISSTRING(value: any)

Return:

boolean

Example of usage:

Is Number

Returns true if a value is a number.

Expression:

ISNUMBER(value: any)

Return:

boolean

Example of usage:

Is Bool

Returns true if a value is a boolean.

Expression:

ISBOOL(value: any)

Return:

boolean

Example of usage:

Is Object

Returns true if a value is an object.

Expression:

ISOBJECT(value: any)

Return:

boolean

Example of usage:

Is Array

Returns true if a value is an array.

Expression:

ISARRAY(value: any)

Return:

boolean

Example of usage:

Last updated

Was this helpful?