Can you help me with this problem? I tried to make a function that receives a parameter of type Date
e.g. 12.11.2020. I want it to return the previous day.
function getPreviousDay(d) {
var dateObj = new Date(d);
var previousDay = dateObj.setDate(dateObj.getDate() - 1);
return previousDay;
}
console.log(getPreviousDay(new Date())); //1606809601830
But as you see, the function returns: 1606809601830, I don't know why. Thank you, guys!
You don't want to return the result of
Date.prototype.setDate()
which is the date in milliseconds, you want to return the mutateddateObj