Skip to content

date-manip


date-manip / subHours

subHours

函数

default()

default(date, hours): Date

定义于: src/subHours.ts:17

Subtracts a specified number of hours from a date. 从日期中减去指定数量的小时。

参数

date

Date

The date to subtract hours from. (要从日期中减去的小时数。)

hours

number

The number of hours to subtract. (要减去的小时数。)

返回

Date

A new date with the subtracted hours. (减去小时后的新日期。)

示例

ts
//Subtracting 3 hours from a date (从日期中减去3)
subHours(new Date(2014, 6, 2, 11, 55), 3);
//=> Thu Jul 02 2015 08:55:00