Skip to content

date-manip


date-manip / add

add

函数

default()

Adds a specified number of time units or an object with multiple time units to a date. 向日期添加指定数量的时间单位或包含多个时间单位的对象。

参数

The date to add time to. (要添加时间的日期。)

参数

The number of time units to add, (要添加的时间单位数量,) or an object where keys are time units and values are the number of units to add. (或对象,其中键是时间单位,值是要添加的时间单位数量。)

参数

The unit of time to add (e.g., 'year', 'month', 'day', 'hour', 'minute', 'second', 'millisecond'). (要添加的时间单位,例如 'year'、'month'、'day'、'hour'、'minute'、'second'、'millisecond'。) This parameter is required if num is a number. (如果 num 是数字,则此参数是必需的。)

示例

ts
// Adding a number of days (添加天数)
const newDate1 = add(new Date(), 5, 'day');
console.log(newDate1); // Outputs the date 5 days from now (输出5天后的日期)

// Adding multiple time units using an object (使用对象添加多个时间单位)
const newDate2 = add(new Date(), { year: 1, month: 2, day: 3 });
console.log(newDate2); // Outputs the date 1 year, 2 months, and 3 days from now (输出1年后2个月3天后的日期)

调用签名

default(date, input): Date

定义于: src/add.ts:7

参数
date

Date

input

number | DateAddingObject

返回

Date

调用签名

default(date, num, unit): Date

定义于: src/add.ts:8

参数
date

Date

num

number

unit

Unit

返回

Date