I am getting a datetime that is in UTC. I like the result to show the datetime locally in the following format:
September 18th 2013, 7:07:00 PM
Is there a function that can come close to this..
I tried the following but not the result I was looking for:
var dt = new Date(date + " UTC");
return dt.toString();