IR Framework

Date.getBienniumEndYear Method

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

Arguments

object
Required. Always the name of a Date object.



Return Value

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

Remarks

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

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

Alert(d.getBienniumEndYear().toString());
//	displays "1985" in an Alert box


Requirements