Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
birthday = "5/30/1962"
TotalMonthsOld = DateDiff("M",birthday,Now())
YearsOld = TotalMonthsOld/12
MonthsOld = TotalMonthsOld - (Int(YearsOld)*12)
TotalDaysOld = DateDiff("D",birthday,Now())
WScript.Echo "You are " & Int(YearsOld) & " Years, " & MonthsOld & " Months Old."