Answer the question
In order to leave comments, you need to log in
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
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
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 questionAsk a Question
731 491 924 answers to any question