Back
timeUntilInWords()
Returns a string describing the approximate time difference between the current date and the date passed in.
// Controller code.
aLittleAhead = DateAdd("d", 365, Now());
// View code.
<!--- Will output: about 1 year --->
#timeUntilInWords(aLittleAhead)#
Copied!