gpt4 book ai didi

javascript - 如何获得上个月的第 15 天和本月的第 16 天

转载 作者:行者123 更新时间:2023-12-04 08:38:33 25 4
gpt4 key购买 nike

我正在尝试获得第 15 天的最后一个月和第 16 天的当前月份,但我失败了有人可以帮助我如何解决这个问题。
预期结果 => 2020 年 11 月 15 日 10 月 15 日

最佳答案

要获得上个月的日期 15,您需要:

moment().subtract(1, 'month').date(15);
您减去一个月并将日期设置为 15。这将返回 10 月 15 日。
要获得当前日期 15,只需删除减法部分。
要获得您当时要求的准确结果:
const currentMonthDate15 = moment().date(15);
const lastMonthDate15 = moment().date(15).subtract(1, 'month');
const string = lastMonthDate15.format('DD MMM') + ', ' + currentMonthDate15.format('DD MMM YYYY');
其中字符串是 15 Oct, 15 Nov 2020

关于javascript - 如何获得上个月的第 15 天和本月的第 16 天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64678292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com