Within my data.json file, I have a date stored in a long format.
"start_time" : "1435377480000"
To convert this long format into an actual date format, I am looking to utilize the power of moment.js.
This is what I have attempted
start_time.html(moment(objects[x].start_time).format("MM/DD/YYYY h:mmA"));
Outcome
See below
Any assistance or tips would be greatly appreciated at this stage.