Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "time/minutes-in-year/docs/types/index.d"

Index

Functions

Functions

Export assignment minutesInYear

  • minutesInYear(value?: number | Date): number
  • Returns the number of minutes in a year according to the Gregorian calendar.

    Notes

    • By default, the function returns the number of minutes in the current year (according to local time). To determine the number of minutes for a particular year, provide either a year or a Date object.
    • The function's return value is a generalization and does not take into account inaccuracies due to daylight savings conventions, crossing timezones, or other complications with time and dates.

    Parameters

    • Optional value: number | Date

      year or Date object

    Returns number

    number of minutes in a year

    Example

    var num = minutesInYear();
    // returns <number>

    Example

    var num = minutesInYear( 2016 );
    // returns 527040

    Example

    var num = minutesInYear( 2017 );
    // returns 525600