I have a unix timestamp, and I\'m trying to convert it into a calendar date such as MM/DD/YYYY. So far, I have this:
MM/DD/YYYY
Using moment.js as you asked, there is a unix method that accepts unix timestamps in seconds:
var dateString = moment.unix(value).format("MM/DD/YYYY");