Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/date_fns/setDay/index.js>default

date-fns Deno package
Very Popular
Go to Latest
function default
import { default } from "https://deno.land/x/date_fns@v2.3.0/setDay/index.js";

Examples

// Set Sunday to 1 September 2014: var result = setDay(new Date(2014, 8, 1), 0) //=> Sun Aug 31 2014 00:00:00

// If week starts with Monday, set Sunday to 1 September 2014: var result = setDay(new Date(2014, 8, 1), 0, { weekStartsOn: 1 }) //=> Sun Sep 07 2014 00:00:00

Parameters

dirtyDate
  • the date to be changed
dirtyDay
  • the day of the week of the new date
dirtyOptions