How can I convert a serialized date value (1424246400000) to a short date string ("2/23/2015") in mmddyyyy format using javascript?
I've tried using Date() and all I can seem to come up with is a long string...
Date(1424246400000); //"Mon Feb 23 2015 16:56:37 GMT-0800 (Pacific Standard Time)"