• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

The Programming Expert

Solving All of Your Programming Headaches

  • HTML
  • JavaScript
  • jQuery
  • PHP
  • Python
  • SAS
  • VBA
  • About
You are here: Home / JavaScript / Using JavaScript to Subtract Days From a Date

Using JavaScript to Subtract Days From a Date

January 31, 2022 Leave a Comment

To subtract days from a date, we can use the JavaScript getTime() method. The getTime() method converts dates into the number of milliseconds since January 1st, 1970. Since there are 86400000 milliseconds in 1 day, we can subtract multiples of 86400000 to our converted date to subtract as many days as we want.

var date1 = new Date();
var dateToMilliseconds = date1.getTime();
var subtractedDays = dateToMilliseconds + (86400000*5);
//This will subtract 5 days to our date.
var newDate = new Date(subtractedDays);
//This will create a new date that will be 5 days prior the current date

We can also add milliseconds to add days to a date. Below are some examples of subtracting days from a date object with the help of the getTime() method.

var date1 = new Date();
var dateToMilliseconds = date1.getTime();
var result1 = date1;
var result2 = new Date(dateToMilliseconds+(-86400000*5));
var result3 = new Date(dateToMilliseconds+(-86400000*7));
var result4 = new Date(dateToMilliseconds+(-86400000*30));
var result5 = new Date(dateToMilliseconds+(86400000*5));

Which would result in the following:

result1 = Mon Jan 31 2022 12:11:53 GMT-0500 (Eastern Standard Time);
result2 = Wed Jan 26 2022 12:11:53 GMT-0500 (Eastern Standard Time);
result3 = Mon Jan 24 2022 12:11:53 GMT-0500 (Eastern Standard Time);
result4 = Sat Jan 01 2022 12:11:53 GMT-0500 (Eastern Standard Time);
result5 = Sat Feb 05 2022 12:11:53 GMT-0500 (Eastern Standard Time);

Subtract Days from a Date Using JavaScript with a Click

In this example, we will let the user subtract days from the current date using an input field. We will use the JavaScript getTime() method to convert dates to milliseconds like we did above.

Here is our HTML setup:

<p>How many days do you want to subtract from the current date and time?</p>
<input id="userVal" type="text" value="">
<input id="submitNum" type="submit" onclick="subtractDays()" value="Submit">
<div id="results"></div>

Below is the JavaScript code which will take the user input using the onclick event and run the function below. The function will subtract the days from the current date like we did above. We will then update the #results div using the textContent property.

function subtractDays() {
  var date1 = new Date();
  var dateToMilliseconds = date1.getTime();
  var userDays = document.getElementById("userVal").value;
  var subtractedDays = dateToMilliseconds + (-86400000*userDays);
  var newDate = new Date(subtractedDays);
  document.getElementById("results").textContent = newDate;
}

The final code and output for this example is below:

Code Output:

How many days do you want to subtract from the current date and time?


Full Code:

<p>How many days do you want to subtract from the current date and time?</p>
<input id="userVal" type="text" value="">
<input id="submitNum" type="submit" onclick="subtractDays()" value="Submit">
<div id="results"></div>

<script>

function subtractDays() {
  var date1 = new Date();
  var dateToMilliseconds = date1.getTime();
  var userDays = document.getElementById("userVal").value;
  var subtractedDays = dateToMilliseconds + (-86400000*userDays);
  var newDate = new Date(subtractedDays);
  document.getElementById("results").textContent = newDate;
}

</script>

Hopefully this article has been useful in helping you understand how to use JavaScript to subtract days from a date.

Other Articles You'll Also Like:

  • 1.  Finding the Length of a String in JavaScript
  • 2.  How to Check if a Number is Even or Odd in JavaScript
  • 3.  Using JavaScript to Check if Variable Exists
  • 4.  Check if a String Contains Uppercase Letters in JavaScript
  • 5.  JavaScript continue statement – Skip Iterations in Loop Based on Conditions
  • 6.  Using JavaScript to Scroll to Bottom of Div
  • 7.  JavaScript substring – How to Get a Substring From a String
  • 8.  Using JavaScript to Round to 2 Decimal Places
  • 9.  JavaScript acosh – Find Hyperbolic Arccosine of Number
  • 10.  How to Return Multiple Values in JavaScript

About The Programming Expert

The Programming Expert is a compilation of a programmer’s findings in the world of software development, website creation, and automation of processes.

Programming allows us to create amazing applications which make our work more efficient, repeatable and accurate.

At the end of the day, we want to be able to just push a button and let the code do it’s magic.

You can read more about us on our about page.

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

About The Programming Expert

the programming expert main image

The Programming Expert is a compilation of hundreds of code snippets to help you find solutions to your problems in Python, JavaScript, PHP, HTML, SAS, and more.

Search

Learn Coding from Experts on Udemy

Looking to boost your skills and learn how to become a programming expert?

Check out the links below to view Udemy courses for learning to program in the following languages:

Copyright © 2022 · The Programming Expert · About · Privacy Policy