Very Popular
Latest
function default
import { default } from "https://dotland.deno.dev/x/date_fns@v2.22.1/isSameMonth/index.ts";

Examples

// Are 2 September 2014 and 25 September 2014 in the same month? var result = isSameMonth(new Date(2014, 8, 2), new Date(2014, 8, 25)) //=> true

Parameters

dirtyDateLeft: Date | number
  • the first date to check
dirtyDateRight: Date | number
  • the second date to check

Returns

boolean

the dates are in the same month