Is there a way to compare the current date and time in JavaScript with the specific format of '2016-06-01T00:00:00Z'?
I am receiving the date format '2016-06-01T00:00:00Z' from the backend, and I need to verify it against today's date. However, I am unsure how to perform this comparison with that specific format.
My understanding of JavaScript is very basic.