IR Framework

Date.getBienniumBeginYear Method

Returns the end year of the biennium that contains the date.
object.getBienniumBeginYear ( )

Arguments

object
Required. Always the name of a Date object.



Return Value

The Date.getBienniumBeginYear method returns an integer representing the end year of the biennium containing the Date.

Remarks

The following example illustrates the use of the Date.getBienniumBeginYear method.

var d = new Date("8/25/1983");

Alert(d.getBienniumBeginYear().toString());
//	displays "1983" in an Alert box


Requirements