If I am given an end date in epoch time, how do I use the current time to calculate the days left before the end epoch time given?
Epoch time given example:
1444958355000
Getting current day in epoch:
var day = new Date();
var time = day.getTime();