Skip to content

Instantly share code, notes, and snippets.

@dbilovd
Last active March 17, 2017 13:03
Show Gist options
  • Save dbilovd/27c09fb96820879163ce4865cf337f41 to your computer and use it in GitHub Desktop.
Save dbilovd/27c09fb96820879163ce4865cf337f41 to your computer and use it in GitHub Desktop.
Get date of start of week
function startOfWeek (weekStart) {
var today = new Date();
var todayInWeek = today.getDay();
var todayDate = today.getDate();
var startOfWeekDate = (weekStart == "m") ?
todayDate - (todayInWeek - 1) : todayDate - todayInWeek;
var startOfWeek = new Date();
startOfWeek.setDate(startOfWeekDate);
return startOfWeek;
}
console.log(startOfWeek("s"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment