How do I format a date in JavaScript?
How do I format a Javascript Date
object as a string? (Preferably in the format: 10-Aug-2010
)
Format date from YYYYMMDD to YYMMDD in Javascript
I have this code which shows the year in YYYYMMDD format. I would like the output to be in YYMMDD
format. Basically to replace 2014 to 14 only.
How do I format a date in JavaScript?
How do I format a Javascript Date
object as a string? (Preferably in the format: 10-Aug-2010
)