1. JavaScript / Говнокод #27157

    0

    1. 1
    2. 2
    3. 3
    let startMonth = Number(moment(payDate).startOf("month").format("DD"));
    let endOfMonth = Number(moment(startMonth).endOf("month").format("DD"));
    let dayOffMonth = (endOfMonth-startMonth +1)

    Это так оказывается можно посчитать число дней в месяце

    Запостил: kinazarov, 09 Декабря 2020

    Комментарии (1) RSS

    • Ой, ну ладно
      for(let i=1; i <= 12; i++) console.log("There are " + new Date(2020, i, 0).getDate().toString() + ` days in month ${i}`);
      Ответить

    Добавить комментарий