Skip to content

date-manip


date-manip / subSeconds

subSeconds

函数

default()

default(date, seconds): Date

定义于: src/subSeconds.ts:17

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

参数

date

Date

The date to subtract seconds from. (要从日期中减去秒的日期。)

seconds

number

The number of seconds to subtract. (要减去的秒数。)

返回

Date

A new date with the subtracted seconds. (减去秒后的新日期。)

示例

ts
// Subtracting 30 seconds from a date (从日期中减)
subSeconds(new Date(2014, 1, 28, 0, 30, 40), 30);
//=> Thu Feb 27 2014 23:59:10