Now

From SDU
Jump to: navigation, search
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.

Overview

Return current date and time in datetime format. It can be converted to Unix timestamp using cast to int.

Usage

<source lang="javascript"> date now() </source>

Results

Current date and time in datetime format.

Examples

<source lang="javascript"> chg.modified_date = now(); alg.time_spent = now() - time_stamp;

if ((int)now() > (int)need_by-600) { set_return_data(TRUE); } else { set_return_data(FALSE); } </source>