Which day of the week was…

Calculate the day of the week for a specific date. Whether it’s a historical event, an upcoming appointment, or the day you were born, find out which day of the week a certain event took place.

Face with waiting expression Nothing to see yet!

Loading takeymakey...
TakeyMakey code
Want this tool to do something else? Edit the code below and make it do whatever you want.
export const take = [{ type: "date" }]

export const make = (date) => {
  if (!date) return

  return { type: "card", value: toDay(date), detail: toDate(date) }
}

const toDay = new Intl.DateTimeFormat(undefined, {
  weekday: "long",
}).format

const toDate = new Intl.DateTimeFormat(undefined, {
  year: "numeric",
  day: "numeric",
  month: "long",
}).format