DateTime¶
Reference¶
- class DateTime¶
- module:
- toString()¶
Returns the datetime as a string
- isLeapYear()¶
Checks if the year is a leap year
- getDaysInMonth()¶
Gets the number of days in the month
- addSeconds(seconds)¶
Adds seconds to the current datetime
- Parameters:¶
seconds (
number
) – Number of seconds to add
- addMinutes(minutes)¶
Adds minutes to the current datetime
- Parameters:¶
minutes (
number
) – Number of minutes to add
- addHours(hours)¶
Adds hours to the current datetime
- Parameters:¶
hours (
number
) – Number of hours to add
- addMonths(months)¶
Adds months to the current datetime (handles overflow)
- Parameters:¶
months (
number
) – Number of months to add
- addYears(years)¶
Adds years to the current datetime
- Parameters:¶
years (
number
) – Number of years to add
- compare(other)¶
Compares two DateTime objects
- equals(other)¶
Checks if two datetimes are equal
- static now()¶
Creates a DateTime object representing the current date and time
- toTimestamp()¶
Converts the DateTime object to a Unix timestamp