Class HebrewCal
Extends
Calendar.
Construct a new Hebrew calendar object. This class encodes information about
the Hebrew (Jewish) calendar. The Hebrew calendar is a tabular hebrew
calendar where the dates are calculated by arithmetic rules. This differs from
the religious Hebrew calendar which is used to mark the beginning of particular
holidays. The religious calendar depends on the first sighting of the new
crescent moon to determine the first day of the new month. Because humans and
weather are both involved, the actual time of sighting varies, so it is not
really possible to precalculate the religious calendar. Certain groups, such
as the Hebrew Society of North America, decreed in in 2007 that they will use
a calendar based on calculations rather than observations to determine the
beginning of lunar months, and therefore the dates of holidays.
Defined in: HebrewCal.js.
Constructor Attributes | Constructor Name and Description |
---|---|
HebrewCal(options)
|
Method Attributes | Method Name and Description |
---|---|
<static> |
HebrewCal.daysInYear(year)
Return the number of days in the given year.
|
getMonLength(month, year)
Return the number of days in a particular month in a particular year.
|
|
getNumMonths(year)
Return the number of months in the given year.
|
|
getType()
Return the type of this calendar.
|
|
isLeapYear(year)
Return true if the given year is a leap year in the Hebrew calendar.
|
|
lastDayOfMonth(month, year)
Return the date of the last day of the month for the given year.
|
- Parameters:
- {Object=} options
- Options governing the construction of this instance
- Parameters:
- {number} year
- the year for which the length is sought
- Returns:
- {number} number of days in the given year
- Parameters:
- {number} month
- the month for which the length is sought
- {number} year
- the year within which that month can be found
- Returns:
- {number} the number of days within the given month in the given year, or 0 for an invalid month in the year
- Parameters:
- {number} year
- a year for which the number of months is sought
- Returns:
- {string} the name of the type of this calendar
- Parameters:
- {number|Object} year
- the year for which the leap year information is being sought
- Returns:
- {boolean} true if the given year is a leap year
- Parameters:
- {number} month
- the month for which the number of days is sought
- {number} year
- the year in which that month is
- Returns:
- {number} the number of days in the given month and year