How i could convert datetime 5/8/2011 12:00:00 AM (m/d/yyyy) to dd-MMM-yyyy like 08-May-2011 in javascript.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
This link is a good resource you can use for. http://blog.stevenlevithan.com/archives/date-time-format Alternatively, you need to get the individual part and concatenate them as needed like below.
To get the month name instead of month number, you need to define an array like below
|
|||
|
check below link hope you got some idea http://bytes.com/topic/javascript/answers/519332-how-convert-datetime-format-using-javascript |
|||
|
|


5/8/2011to be08-Jun-2011. I guess you meant08-May-2011? (although if I saw5/8/2011I'd read it as 5th of August. ambiguous date formats are a really bad idea) – Spudley Jun 22 '11 at 10:38