Results in a string representation of yesterday's date.
Date
constructor to get the current date.Date.prototype.getDate()
and set the value to the result using Date.prototype.setDate()
.Date.prototype.toISOString()
to return a string in yyyy-mm-dd
format.const yesterday = () => {
let d = new Date();
d.setDate(d.getDate() - 1);
return d.toISOString().split('T')[0];
};
yesterday(); // 2018-10-17 (if current date is 2018-10-18)
JavaScript, Date
Results in a string representation of tomorrow's date.
JavaScript, Date
Calculates the date of n
minutes from the given date, returning its string representation.
JavaScript, Date
Calculates the date of n
days from the given date, returning its string representation.