Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

addYears

import { addYears } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// Add 5 years to 1 September 2014:
const result = addYears(new Date(2014, 8, 1), 5)
//=> Sun Sep 01 2019 00:00:00
function addYears<DateType extends Date>(date: DateType | number | string, amount: number): DateType;
§
addYears<DateType extends Date>(date: DateType | number | string, amount: number): DateType
[src]

§Type Parameters

§
DateType extends Date
[src]

§Parameters

§
date: DateType | number | string
[src]
  • The date to be changed
§
amount: number
[src]
  • The amount of years to be added.

§Return Type

§
DateType
[src]

The new date with the years added