“момент получите неделю” Ответ

момент получите имя в будние дни

var m = moment().day(); // gives 4 for thursday, then you can do a switch
GutoTrosla

момент получения недели ISO

const weekNumber = moment().format("w");
Jash_World

Mommonjs Получите календарную неделю

  $(document).ready(function(){
    var weeknumber = moment("12-25-1995", "MM-DD-YYYY").week();
    console.log(weeknumber);
  });
Different Dunlin

момент, получите начало недели в DateTime

const today = moment();
const from_date = today.startOf('week');
const to_date = today.endOf('week');
console.log({
  from_date: from_date.toString(),
  today: moment().toString(),
  to_date: to_date.toString(),
});

// {
//   from_date: "Sun Apr 22 2018 00:00:00 GMT-0500",
//   today: "Thu Apr 26 2018 15:18:43 GMT-0500",
//   to_date: "Sat Apr 28 2018 23:59:59 GMT-0500"
// }
Foolish Flatworm

Получить неделю номер месяца от даты

function test(mJsDate){
   var str = mJsDate.toLocaleString().substring(0, 3) +
             " number " + Math.ceil(mJsDate.date() / 7) +
             " of the month";
   return str;
}

for(var i = 1; i <= 31; i++) {
   var dayStr = "2014-01-"+ i;
   console.log(dayStr + " " + test(moment(dayStr)) );
}

//examples from the console:
//2014-01-8 Wed number 2 of the month
//2014-01-13 Mon number 2 of the month
//2014-01-20 Mon number 3 of the month
//2014-01-27 Mon number 4 of the month
//2014-01-29 Wed number 5 of the month
Agreeable Angelfish

момент получите неделю


const currentWeekNumber = moment().week()

const weekNumberFromDay = moment('yyyy-mm-dd').week()
Foolish Flatworm

Ответы похожие на “момент получите неделю”

Вопросы похожие на “момент получите неделю”

Больше похожих ответов на “момент получите неделю” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования