I'm converting some date in milliseconds to date format as seen below:
var dateFrom = new Date(1312883657720); //dateFrom = 2011-08-09T12:57:01
Now I need the value of dateFrom(2011-08-09T12:57:01) in this format: 2011/08/09. I can't seem to find a date method to remove the time string, is there a workaround needed?