Handling dates in JSON responses is something many web developers struggle with. The JSON Specification doesn’t specify how dates should be represented in a JSON string, so every implementation invented its own way of representing dates. These are some of the formats in use today: {“date”: new Date(ms_since_epoch) } {“date”: Date(ms_since_epoch) } {“date”: “Date(ms_since_epoch) } [...]