Author -  Sai gowtham

How to add days to a Date in JavaScript

In this tutorial, we are going to learn about how to add days to the current date in JavaScript using the new Date() constructor.

Adding days to current Date

  1. To add the days to a current date, first we need to access it inside the JavaScript using the new Date() constructor.
const current = new Date();
  1. Now, we can add the required number of days to a current date using the combination of setDate() and getDate() methods.

// it adds 2 days to a current date
current.setDate(current.getDate()+2);

console.log(current.toDateString());

/* If today's date is "Wed Sep 30 2020"
then it returns after 2 days date "Fri Oct 02 2020" */

Full example:

const current = new Date();

// it adds 2 days to a current date
current.setDate(current.getDate()+2);
console.log(current.toDateString());

Definitions

  • The setDate() method sets the day of the month to a Date object.
  • The getDate() method gets the current day of the month (from 1 - 31).

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