21 Articles in this category
-
DarkLight
date
21 Articles in this category
-
DarkLight
Datetime_is_after
Returns true if the first datetime is after the second datetime, otherwise returns false .
Function signature
DATETIME_IS_AFTER(date1: String, date2: String, precision: String) => Boolean
Examples
Updated on : 18 May 2022
Datetime_is_before
Returns true if the first datetime is before the second datetime, otherwise returns false .
Function signature
DATETIME_IS_BEFORE(date1: String, date2: String, precision: String) => Boolean
Examples
Updated on : 18 May 2022
Datetime_is_same
Returns true if the two given datetimes are exactly the same, otherwise returns false .
Function signature
DATETIME_IS_SAME(date1: String, date2: String, precision: String) => Boolean
Examples
Updated on : 18 May 2022
Is_datetime
Returns true if the given text is a valid datetime, and false otherwise.
Function signature
IS_DATETIME(value: String) => Boolean
Examples
Updated on : 18 May 2022
Local_timezone
Returns the current local timezone of the device running the app.
Function signature
LOCAL_TIMEZONE() => String
Examples
Updated on : 18 May 2022
Set_timezone
Returns a datetime that represents the given datetime in another timezone.
Function signature
SET_TIMEZONE(date: String, timezone: String) => String
Examples
Updated on : 18 May 2022
Timestamp
Converts the given datetime into the number of milliseconds since the Unix Epoch (1st January, 1970 UTC).
Function signature
TIMESTAMP(date: String) => Number
Examples
Updated on : 18 May 2022