【发布时间】:2022-01-07 05:47:48
【问题描述】:
我想获得剩余月份的索引数组(0-index),不包括当前月份,倒计时,今年(或任何日期)。我正在使用lodash 和dayjs,但我觉得我的代码有点难以理解。
有没有更“dayjs”的方式来获得我想要的东西?我没有在文档的库或其他有类似问题的线程中找到更多帮助。
// All months - Current year's remaining months (0-index), we map in reverse until reaching 0
const yearRemainingMonths = map(range(11 - dayjs().month()), n => 11 - n)
// []
// Let's pretend we are in June, so we'd get
// [11, 10, 9, 8, 7]
【问题讨论】:
标签: javascript dayjs