Sometime you will need to know, with 2 dates objects, if there are corresponding to the same date, or find which date is after the other.
In Go, there is 4 way to compare dates:
date1 == date2, returns true when the 2 are the same moment
date1 != date2, returns true when the 2 are different mom...