Date > Date.getFullYear
Date.getFullYearSyntax
myDate
.getFullYear();
Arguments
None.
Description
Method; returns the full year (a four-digit number, for example, 2000) of the specified Date object, according to local time. Local time is determined by the operating system on which the Flash Player is running.
Player
Flash 5 or later.
Example
The following example uses the constructor to create a new Date object and send the value returned by the getFullYear
method to the Output window:
myDate = new Date(); trace(myDate.getFullYear());