I built my backend API with the Django rest framework in which the model has a DateTimeField.
date = models.DateTimeField(auto_now_add=True)
When I get the data from the API to React I get something like this
2019-01-20T19:24:58.674435Z
How can I parse this in javascript and convert it to a readable form?