G
G
GaserV2015-12-07 17:51:17
JavaScript
GaserV, 2015-12-07 17:51:17

How to subtract the future date from the current one?

How to subtract the current date from the future and display it? Tried like this, but in the console: "NaN";

var date        = new Date();
  var actionDate  = "31/12/2015";
  var day         = date.getDate();
  var month       = date.getMonth() + 1;
  var year        = date.getFullYear();  
  var currentDate = day + "/" + month + "/" + year;
  var timeRemaining = actionDate - currentDate;
  console.log(timeRemaining);

Answer the question

In order to leave comments, you need to log in

3 answer(s)
M
Mykola Dzedzinskyi, 2015-12-07
@GaserV

if in one line then
it's in days

D
Dmitry Kovalsky, 2015-12-07
@dmitryKovalskiy

You are inventing some kind of bicycle from cast iron and mercury.

var curDate = new Date() - current
var accDate = new Date(year,month,day) - target

And read how you want. Get the difference in ticks.

D
Dmitry Pavlov, 2015-12-07
@dmitry_pavlov

If a lot of work is expected with dates, you can consider using the Moment.js library

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question