Too Long; Didn't Read
We've all been in a situation in Javascript where we have a set of data, all with different dates, which we want to sort by date quickly. The first step to sorting by date is to ensure all your dates are in `date` format. It should be noted that there is no such thing as a date in Javascript. For this one, I'm simply going to split each date by the forward slash, and replace the value with a valid date value. This will output the object, now with valid dates.