1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| dayjs().add(1, "day"); dayjs().add(1, "week"); dayjs().add(1, "month"); dayjs().add(1, "year"); dayjs().add(1, "hour"); dayjs().add(1, "minute"); dayjs().add(1, "second"); dayjs().add(1, "millisecond");
dayjs().subtract(1, "day"); dayjs().subtract(1, "week"); dayjs().subtract(1, "month"); dayjs().subtract(1, "year"); dayjs().subtract(1, "hour"); dayjs().subtract(1, "minute"); dayjs().subtract(1, "second"); dayjs().subtract(1, "millisecond");
moment().add(1, "days"); moment().add(1, "weeks"); moment().add(1, "months"); moment().add(1, "years"); moment().add(1, "hours"); moment().add(1, "minutes"); moment().add(1, "seconds"); moment().add(1, "milliseconds");
moment().subtract(1, "days"); moment().subtract(1, "weeks"); moment().subtract(1, "months"); moment().subtract(1, "years"); moment().subtract(1, "hours"); moment().subtract(1, "minutes"); moment().subtract(1, "seconds"); moment().subtract(1, "milliseconds");
|