date-manip / addHours
addHours
函数
default()
default(
date
,hours
):Date
定义于: src/addHours.ts:19
Adds a specified number of hours to a date. 向日期添加指定数量的小时。
参数
date
Date
The date to add hours to. (要添加小时的日期。)
hours
number
The number of hours to add. (要添加的小时数。)
返回
Date
A new date with the added hours. (添加小时后的新日期。)
示例
ts
// Adding 3 hours to a date (向日期添加3小时)
const originalDate = new Date('2023-10-01T12:00:00');
addHours(originalDate, 3);
console.log(originalDate.toISOString()); // Outputs: '2023-10-01T15:00:00.000Z' (输出: '2023-10-01T15:00:00.000Z')