Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Examples of outputting a formatted date

Current date formatted as MM/dd/yyyy:  new Date().format('MM/dd/yyyy')

Current date formatted as M/d/yyyy: new Date().format('M/d/yyyy')

 

Date of a variable formatted as MM/dd/yyyy:  new Date(#EncounterDate).format('MM/dd/yyyy')

Date of a variable formatted as M/d/yyyy:  new Date(#EncounterDate).format('M/d/yyyy')

 

 

  • No labels