isPresent

Modified on Thu, 24 Aug 2023

Description

Use this function to check if a value is present.

Syntax

isPresent(value)

Returns

Return ValueDescription
True/FalseReturns True if the value is present; otherwise, returns False.

Sample

ExampleResultDescription
isPresent('Hello')TrueReturns True because the value 'Hello' is present.
isPresent('')FalseReturns False because the value is an empty string, which is not considered present.

To view all Jiffy functions, click here.

See Also