Constructors
constructor
- new SimpleDate(d, m, y): SimpleDate
Parameters
- d: number
- m: number
- y: number
Accessors
day
- get day(): number
Returns number
month
- get month(): number
Returns number
year
- get year(): number
Returns number
Methods
toISOString
- toISOString(): string
Returns string
Represents a single date, without timezone. Used to avoid complications of Javascript Date handling and browser/timezone issues.