- getDate(): Get the day from the date.
- Get the month from the date.
- getFullYear(): Retrieve the year from the date.
- getHours(): retrieve the hour from the time
- Retrieve the minutes from the time.
- getSeconds(): retrieve the seconds from the time
- retrieve the milliseconds from the time
- getTime(): Obtain the timestamp of a date object.
- setDate(): Set the day in the date.
- setMonth(): to set the month in a date
- setFullYear(): Set the year in the date
- setHours(): set the hours in the time.
- SetMinutes(): Set the minutes in the time.
- setSeconds(): set the seconds in the time.
- setMilliseconds(): To adjust the milliseconds in the time.
- toDateString(): Convert the date to a string, displaying only the date portion.
- Convert the date to a string, displaying only the time part.
- toLocaleDateString(): Convert the date to a localized date string.
- toLocaleTimeString(): Convert the date to a localized time string
- toString(): Converts the date to a string, displaying the complete date and time information.
✖