now
This topic describes the syntax and usage of the now function in Zoho Creator .
Description
Returns the current date and time. The NOW function is useful when you need to display the current date and time in your Form or calculate a value based on the current date and time, and have that value updated each time you open the Form.
Syntax
now
The now function syntax has no arguments.
Note: This function is supported only in free-flow scripting mode of Script Builder.
Example
a. In this example, the "now" variable which returns the current time is specified as input to the hour function.
hour = hour(now);
