Skip to content

Instantly share code, notes, and snippets.

View irkreja's full-sized avatar
🎯
Focusing

Rejaul Karim irkreja

🎯
Focusing
View GitHub Profile
function ISO8601_week_no(dt)
{
var tdt = new Date(dt.valueOf());
var dayn = (dt.getDay() + 6) % 7;
tdt.setDate(tdt.getDate() - dayn + 3);
var firstThursday = tdt.valueOf();
tdt.setMonth(0, 1);
if (tdt.getDay() !== 4)
{
tdt.setMonth(0, 1 + ((4 - tdt.getDay()) + 7) % 7);