I'm self-learning the REST concept and am playing with the Flickr API. One of the parameters that Flickr requires is the min_upload_date, which is formatted in the Unix date format ...
In my javascript, I have a unix timestamp (in this instance `1318305600000") and I need to convert that into a human readable date via Javascript.
How do I go about doing this?
...