Function is_nothing()

← Back to Module core



Module core → is_nothing()

Description

Check whether value is nothing or not

is_nothing(value)


Parameters


Return Value


Usage Example

a = nothing
b = 23
 
is_nothing(a)   ' Returns true
is_nothing(b)   ' Returns false