Author -  Sai gowtham

How to add 1 year to a Date in JavaScript

In this tutorial, we are going to learn about how to add 1 year to the current date in JavaScript with the help of examples.

Adding 1 year to a current Date

  1. To add the 1 year to a current date, first we need to access the current date inside the JavaScript using the new Date() constructor.
const currentDate = new Date();
  1. Now, we can add the 1 year to a current date using the combination of getFullYear() and

setFullYear() methods.

// it adds 1 year to a current date
currentDate.setFullYear(currentDate.getFullYear() + 1);
console.log(currentDate.toDateString());

This above code adds a 1 year to the current date, for example If today’s date is “Wed Jan 17 2024” then it adds 1 year to it and returns “Fri Jan 17 2025” .

Full example:

const currentDate = new Date();

currentDate.setFullYear(currentDate.getFullYear() + 1);
console.log(currentDate.toDateString());

Definitions

  • The setFullYear() method sets the year of a Date.
  • The getFullYear() method gets the current year in 4-digit format (eg: 2024).

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY