Skip to content

Instantly share code, notes, and snippets.

@ishida83
Forked from IamSilviu/Get week number
Created December 27, 2021 04:50
Show Gist options
  • Save ishida83/669152075d6dbcbe2be60aaf3a4409b7 to your computer and use it in GitHub Desktop.
Save ishida83/669152075d6dbcbe2be60aaf3a4409b7 to your computer and use it in GitHub Desktop.
JavaScript Get week number.
Date.prototype.getWeek = function () {
var onejan = new Date(this.getFullYear(), 0, 1);
return Math.ceil((((this - onejan) / 86400000) + onejan.getDay() + 1) / 7);
};
var myDate = new Date("2001-02-02");
myDate.getWeek(); //=> 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment