“Dapatkan Nomor Minggu Bulan Dari Momen Tanggal” Kode Jawaban

Momen Dapatkan Nama Hari Kerja

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

Dapatkan Nomor Minggu Bulan Dari Momen Tanggal

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

Jawaban yang mirip dengan “Dapatkan Nomor Minggu Bulan Dari Momen Tanggal”

Pertanyaan yang mirip dengan “Dapatkan Nomor Minggu Bulan Dari Momen Tanggal”

Lebih banyak jawaban terkait untuk “Dapatkan Nomor Minggu Bulan Dari Momen Tanggal” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya