isEmpty

Last update: 2023-01-23
  • Created for:
  • Experienced
    Developer

Returns true if the string in the parameter has no character.

Category

String

Function syntax

isEmpty(<parameters>)

Parameters

  • string

Signature and returned type

isEmpty(<string>)

Returns a boolean.

Example

isEmpty("")

Returns true.

isEmpty("Hello World")

Returns false.

On this page