Formatting a Date
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')Â %>
Â
Â