Skip to main content

Is Nil

A expression editor function that checks if a value is nil.

Updated over a week ago

Overview

This function checks whether a given value is nil (empty or undefined). It returns a boolean value: true if the value is nil, false if the value contains data.


Parameters

isNil(value)

Value

The value to check for nil. This is typically a variable but can be other data types.


For example...

isNil("Hello")

Returns false.

isNil(null)

Returns true.

Did this answer your question?