addDays(value: Date, days: number): Date
特定の日付に指定した日数を加算した新しい日付を取得します。
addHours(value: Date, hours: number): Date
特定の日付に指定した時間数を加算した新しい日付を取得します。
addMinutes(value: Date, minutes: number): Date
特定の日付に指定した分数を加算した新しい日付を取得します。
addMonths(value: Date, months: number): Date
特定の日付に指定した月数を加算した新しい日付を取得します。
addSeconds(value: Date, seconds: number): Date
特定の日付に指定した秒数を加算した新しい日付を取得します。
addYears(value: Date, years: number): Date
特定の日付に指定した年数を加算した新しい日付を取得します。
clone(date: Date): Date
指定したDate オブジェクトのコピーを作成します。
Date object to copy.
equals(d1: Date | null, d2: Date | null): boolean
2つのDateオブジェクトが同じ日付と時刻を指している場合(または両方がnullの場合)、trueを返します。
First date.
Second date.
fromDateTime(date: Date, time: Date): Date
2つのDateオブジェクトに設定された日付と時刻を持つDateオブジェクトを取得します。
Date object that contains the date (day/month/year).
Date object that contains the time (hour:minute:second.millisecond).
fromFiscal(date: Date, govt: boolean): void
現在のカルチャを使用して、会計年度日付をカレンダー日付に変換します。
monthFirst(value: Date): Date
指定された日付の月の最初の日を取得します。
Original date.
monthLast(value: Date): Date
指定された日付の月末日を取得します。
Original date.
newDate(year?: number, month?: number, day?: number, hour?: number, min?: number, sec?: number, ms?: number): Date
新しいDateオブジェクトインスタンスを取得します。
Integer value representing the year, defaults to current year.
Integer value representing the month (0-11), defaults to current month.
Integer value representing the day (1-31), defaults to current day.
Integer value representing the hour, defaults to zero.
Integer value representing the minute, defaults to zero.
Integer value representing the second, defaults to zero.
Integer value representing the millisecond, defaults to zero.
sameDate(d1: Date, d2: Date): boolean
2つのDateオブジェクトが同じ日付を指している場合、trueを返します(時刻は無視します)。
sameTime(d1: Date, d2: Date): boolean
2つのDateオブジェクトが同じ時刻を指している場合、trueを返します(日付は無視します)。
toFiscal(date: Date, govt: boolean): void
現在のカルチャを使用して、カレンダー日付を会計日付に変換します。
weekFirst(value: Date, firstDayOfWeek?: Globalize): Date
指定された日付の最初の曜日を取得します。
Original date.
First day of week (0 for Sunday, 1 for Monday, etc). Defaults to first day of week for the current culture.
weekLast(value: Date, firstDayOfWeek?: Globalize): Date
指定された日付の最終曜日を取得します。
Original date.
First day of week (0 for Sunday, 1 for Monday, etc). Defaults to first day of week for the current culture.
日付および時刻のユーティリティを提供します。