## `get year in _` The `get year in _` stores the current year number in the passed number variable. **Syntax:** ```coffeescript get year in ``` ## `get month in _` The `get month in _` stores the current month number (1 - 12) in the passed number variable. **Syntax:** ```coffeescript get month in ``` ## `get day in _` The `get day in _` stores the current day of the month (1 - 31) in the passed number variable. **Syntax:** ```coffeescript get day in ``` ## `get hour in _` The `get hour in _` stores the current hour in the passed number variable. **Syntax:** ```coffeescript get hour in ``` ## `get minutes in _` The `get minutes in _` stores the current minutes in the passed number variable. **Syntax:** ```coffeescript get minutes in ``` ## `get seconds in _` The `get seconds in _` stores the current seconds in the passed number variable. **Syntax:** ```coffeescript get seconds in ``` ## `get epoch in _` The `get epoch in _` stores the current Unix time (the number of seconds that have elapsed since the Unix epoch, that is the time 00:00:00 UTC on 1 January 1970) in the passed number variable. **Syntax:** ```coffeescript get epoch in ```