distance between two dates
d1.distanceFrom(d2) is equivalent to d1 ^ d2 and mathematically equivalent to d1 minus d2
d1.distanceFrom(d2)
d1 ^ d2
d1 minus d2
int distanceFrom(Date other) { return julianDayNumber - other.julianDayNumber; }