-4

can I convert milliseconds to date and time string. suppose I have millisecond in a long number and I want it like this: Oct 22 2013 09:50:17 is this possible??

R.K.
  • 1
  • 1
  • 1
  • 5
    here you go: http://stackoverflow.com/questions/4673527/converting-milliseconds-to-a-date-jquery-js, http://stackoverflow.com/questions/8579861/how-to-convert-milliseconds-into-a-readable-date, http://stackoverflow.com/questions/12196689/how-to-convert-milliseconds-to-a-date-string, http://stackoverflow.com/questions/12435403/convert-datetime-to-milliseconds – ahren Oct 21 '13 at 12:36

1 Answers1

0

Like this:

var date = new Date(1324339212260);
date.toString("MMM dd"); 
Sarcastic
  • 677
  • 5
  • 14