Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Very Popular
Latest
function default
import { default } from "https://deno.land/x/date_fns@v2.22.1/lastDayOfWeek/index.ts";

Examples

// The last day of a week for 2 September 2014 11:55:00: var result = lastDayOfWeek(new Date(2014, 8, 2, 11, 55, 0)) //=> Sat Sep 06 2014 00:00:00

// If the week starts on Monday, the last day of the week for 2 September 2014 11:55:00: var result = lastDayOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 }) //=> Sun Sep 07 2014 00:00:00

Parameters

dirtyDate: Date | number
  • the original date
optional
dirtyOptions: LocaleOptions & WeekStartOptions

Returns

the last day of a week