- Countdown
- A display of the interval between now and a future target, refreshed repeatedly so that the interval visibly shrinks. It reaches zero at the target instant.
- Count up
- The same display after the target has passed, showing how much time has gone by since it. Conventionally marked with a plus sign so it cannot be mistaken for time remaining.
- Target instant
- The single point in time being counted to, fully specified: a date, a clock time and a time zone or UTC offset. A date alone is not a target instant.
- Wall clock time
- The reading on a local clock, such as 10:00. It describes an instant only when you also know the place, because the same wall clock reading occurs at different instants in different zones.
- UTC offset
- The number of hours and minutes a local zone is ahead of or behind Coordinated Universal Time, for example plus 9 for Japan. In zones that observe daylight saving the offset changes twice a year.
- Unix time
- A count of seconds since 00:00:00 UTC on 1 January 1970, with no zone attached. Subtracting two Unix timestamps gives an exact interval with no calendar reasoning required.
- Elapsed time
- The real quantity of time that has passed between two instants, measured continuously. It is unaffected by clock changes, because a clock change alters the labels, not the passage of time.
- Floor
- Rounding down to the nearest whole number. A countdown floors its day, hour, minute and second fields, which is why a reading of 2 days means at least 2 days and less than 3.
- Inclusive count
- A day count that includes both the first day and the last, so 31 July to 1 August is two days. It is how people count holidays and advent charts, and it is one higher than the date gap.
- Timer drift
- The accumulating error that appears when a countdown subtracts a fixed amount on each tick instead of recomputing from the clock. Late ticks are lost permanently, so the error only ever grows.
- Throttling
- The deliberate slowing of timers in a page that is hidden or in a device that is saving power. It affects how often the display is redrawn, not the underlying interval.
- Leap second
- An occasional one second adjustment to civil time that keeps it aligned with the Earth's rotation. Browser time ignores them, treating every day as exactly 86,400 seconds.