Development tools : Global functions : Date category : toString
  
toString
Description
Returns String type value of given 'date' (in the format of 'yyyy-MM-dd').
Usage
Client side: Y
Server side: Y
Syntax
String toString(Date date)
Argument
date
The date to be converted to String. The argument can be any date type data.
Return
Returns the string representing 'date' in the format of 'yyyy-MM-dd'.
Example
toString(2011-12-30)
returns string "2011-12-30"
Go up to
Date category