Composer
Composer
Changelog
Bugs and feature requests
AppGyver Academy
Home
Changelog
AppGyver Academy
Bugs and feature requests
Using Composer Pro
Introduction
The App Builder
User Interface
Creating user interfaces
Components
Navigation
Variable editor
Theme editor
App logic
App logic overview
Variables
Device sensors
Debugging
Events
Custom JavaScript
Data
Configuring data resources
REST API direct integration
AppGyver Cloud Storage
Authentication
Messaging
Push notifications
Publishing / Distribution
Required build assets and settings
Distributing your app
Reference
Component gallery
Flow functions reference
Formula functions reference
Bitwise
Color
Date
Engineering
Financial
List
Math
Object
Statistical
Text
Utility
BOOLEAN
DEFAULT
DEFAULT_FILE_EXTENSION
ENCODE_FOR_URL
ENCODE_JSON
FILENAME_IS_IMAGE
IF
INTEGER
IS_EMAIL
IS_EMPTY
IS_EQUAL
IS_NULL
IS_NULLY
IS_NUMBER
IS_SAME
IS_UNDEFINED
MIME_TYPE
MIME_TYPE_IS_IMAGE
NOT
NUMBER
NUMERIC_BASE
STRING
URL
Page properties reference
Sensor variables reference
System variables reference
Style properties reference
Policies & Guidelines
Issue reporting guidelines
Powered by GitBook

IS_NULLY

Returns whether a value is nully

Description

Returns true if the given value is either null or undefined. For any other value, returns false.

Function signature

IS_NULLY(value: Json) => Boolean

Parameter

Description

Value

Value to check

Examples

Formula

Return value

IS_NULLY(undefined)

true

IS_NULLY(null)

true

IS_NULLY(false)

false

IS_NULLY(0)

false

IS_NULLY("")

false

Previous
IS_NULL
Next
IS_NUMBER
Last updated 2 months ago
Export as PDF
Contents
Description
Function signature
Examples