JavaScript Date object representing this moment.
Date formatted as YYYY-MM-DD string.
Useful for display or comparison without time components.
Day of month (1-31).
Hour in 24-hour format (0-23).
Minute (0-59).
Month number (1-12).
Note: Unlike JavaScript Date.getMonth(), this is 1-based (January = 1).
Four-digit year (e.g., 2025).
Date and time with convenient derived properties.
Represents a specific moment in time with pre-calculated components for easy access without additional date parsing.
Example