dayOfTheYear()

This function returns the day of the year of any given timestamp.

Bash
dayOfTheYear(timestamp, timeZone) #Output: Number

Examples

Parser expression

Description

Bash
dayOfTheYear({issue.created}, LOCAL)

This example will return the day of the year of the issue's creation date.

If the creation date was February 2nd, 2011, the output would be 33.

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

timestamp

number

The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).

timeZone

timezone

The time zone used for the calculation.

Output

This function returns a number


(books) Use cases and examples