​

Age in Days, Hours, etc.
You know your age in years; how about in days?

Enter a date:
1.

DateObject["November 16, 1998"]
In[]:=
Run the code to compute the number of days from now back to a date. Try other dates:
2.

Now-DateObject["November 16, 1998"]
In[]:=
Round to whole days. Try other dates:
3.

Round[Now-DateObject["November 16, 1998"]]
In[]:=
Convert to minutes. Try other dates, like your birthday (to find out how many minutes old you are):
4.

Round[UnitConvert[Now-DateObject["November 16, 1998"],"Minutes"]]
In[]:=
Spell out the result. Try other dates:
5.

IntegerName[QuantityMagnitude[Round[UnitConvert[Now-DateObject["November 16, 1998"],"Minutes"]]]]
In[]:=
Get the result in seconds. Try other units, like "Hours", "Weeks" or "Months":
6.

IntegerName[QuantityMagnitude[Round[UnitConvert[Now-DateObject["November 16, 1998"],"Seconds"]]]]
In[]:=
​
Explore this further, or try another Exploration!