Parses the given DateLike and converts it into a FullDate instance with the user's current timezone.
A day of the month: 1-31 depending on the month
Hour of the day in 24 time: 0-23
Millisecond of the second: 0-999
Minute of the hour: 0-59
A month of the year: 1-12
The full, four digit year.
2023; Copy
2023;
import {createFullDateInUserTimezone} from 'date-vir';createFullDateInUserTimezone('June 1, 2024');createFullDateInUserTimezone(new Date());createFullDateInUserTimezone(112300120); Copy
import {createFullDateInUserTimezone} from 'date-vir';createFullDateInUserTimezone('June 1, 2024');createFullDateInUserTimezone(new Date());createFullDateInUserTimezone(112300120);
Parses the given DateLike and converts it into a FullDate instance with the user's current timezone.