Confirm Deletion
Are you sure you want to delete the saved search?
ISNULL( value )
ISNULL( ITEM_NAME )
ITEM_NAME
RETURN VALUE
Flashlight
0 (FALSE)
NULL
1 (TRUE)
Regulator system
''
0 (FALSE) Empty string is not NULL
Complex Data Type
Input Value
NULL_array = NULL
ISNULL(NULL_array)
NULL_struct = NULL
ISNULL(NULL_struct)
num_array = [1, 2, 3]
ISNULL(num_array)
num_array = [1, NULL, 3]
num_struct{ number: int rank: int }
ISNULL(num_struct)