最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Get all mondays in the year - Stack Overflow

programmeradmin3浏览0评论

I always have problems figuring out dates functions

var d = new Date(),
    month = d.getMonth(),
    mondays = [];

d.setDate(1);

// Get the first Monday in the month
while (d.getDay() !== 1) {
    d.setDate(d.getDate() + 1);
}

// Get all the other Mondays in the month
while (d.getMonth() === month) {
    var pushDate = new Date(d.getTime());
    mondays.push(pushDate.getDate() + '-' + (pushDate.getMonth()+1) + '-' + pushDate.getFullYear());
    d.setDate(d.getDate() + 7);
}

I am using this function to get all mondays in a month, current month.

How can I adapt this code to get all remaining mondays in the year?

I always have problems figuring out dates functions

var d = new Date(),
    month = d.getMonth(),
    mondays = [];

d.setDate(1);

// Get the first Monday in the month
while (d.getDay() !== 1) {
    d.setDate(d.getDate() + 1);
}

// Get all the other Mondays in the month
while (d.getMonth() === month) {
    var pushDate = new Date(d.getTime());
    mondays.push(pushDate.getDate() + '-' + (pushDate.getMonth()+1) + '-' + pushDate.getFullYear());
    d.setDate(d.getDate() + 7);
}

I am using this function to get all mondays in a month, current month.

How can I adapt this code to get all remaining mondays in the year?

Share Improve this question edited Jul 3, 2017 at 20:26 Toni Michel Caubet asked Jul 3, 2017 at 20:20 Toni Michel CaubetToni Michel Caubet 20.2k58 gold badges218 silver badges388 bronze badges 4
  • At the end of the final loop: if (d.getMonth() === 0) break; – user5734311 Commented Jul 3, 2017 at 20:24
  • What about the while (d.getMonth() === month) { won't i have to update it? – Toni Michel Caubet Commented Jul 3, 2017 at 20:26
  • 1 Just change everything that refers to the month to look at the year. – Barmar Commented Jul 3, 2017 at 20:27
  • 1 @ToniMichelCaubet Right, you can basically use while (true) – user5734311 Commented Jul 3, 2017 at 23:16
Add a ment  | 

4 Answers 4

Reset to default 7

Just loop through the year instead of the month. The code is the same as yours, it works fine. just changed month -> year and getMonth() -> getYear()

var d = new Date(),
    year = d.getYear(),
    mondays = [];

d.setDate(1);

// Get the first Monday in the month
while (d.getDay() !== 1) {
    d.setDate(d.getDate() + 1);
}

// Get all the other Mondays in the month
while (d.getYear() === year) {
    var pushDate = new Date(d.getTime());
    mondays.push(pushDate.getDate() + '-' + (pushDate.getMonth()+1) + '-' + pushDate.getFullYear());
    d.setDate(d.getDate() + 7);
}

With date-fns https://date-fns/v2.28.0/docs/eachWeekOfInterval

eachWeekOfInterval({
    start: new Date('2022/01/01'),
    end: new Date('2022/5/31')
}, { weekStartsOn: 1 })

var x = new Date();
//set the financial year starting date
x.setFullYear(2016, 03, 01);
//set the next financial year starting date
var y = new Date();
y.setFullYear(2017, 03, 01);
var j = 1;
var count = 0;
//getting the all mondays in a financial year
for (var i = 0; x < y; i += j) {
  if (x.getDay() === 1) {
    document.write("Date : " + x.getDate() + "/" +
      (x.getMonth() + 1) + "<br>");
    x = new Date(x.getTime() + (7 * 24 * 60 * 60 * 1000));
    j = 7;
    count++;
  } else {
    j = 1;
    x = new Date(x.getTime() + (24 * 60 * 60 * 1000));
  }
}
document.write("total mondays : " + count + "<br>");

This is just an alternative, it uses a simpler method of getting the first day of the month.

// Get all Mondays in year from provided date
// Default today's date
function getMondays(d) {
  // Copy d if provided
  d = d ? new Date(+d) : new Date();
  // Set to start of month
  d.setDate(1);
  // Store end year and month
  var endYear = d.getFullYear() + 1;
  var endMonth = d.getMonth();

  // Set to first Monday
  d.setDate(d.getDate() + (8 - (d.getDay() || 7)) % 7);
  var mondays = [new Date(+d)];

  // Create Dates for all Mondays up to end year and month
  while (d.getFullYear() < endYear || d.getMonth() != endMonth) {
    mondays.push(new Date(d.setDate(d.getDate() + 7)));
  }
  return mondays;
}

// Get all Mondays and display result
// SO console doensn't show all results
var mondays = getMondays();
mondays.forEach(function(mon) {
  console.log(mon.toLocaleString(void 0, {
    weekday: 'short',
    day: 'numeric',
    month: 'short',
    year: 'numeric'
  }));
});

// Count of Mondays, not all shown in SO console
console.log('There are ' + mondays.length + ' Mondays, the first is ' + mondays[0].toString())

发布评论

评论列表(0)

  1. 暂无评论