js-todolist/src/incrementer.js
2023-06-16 22:43:24 -07:00

5 lines
No EOL
175 B
JavaScript
Executable file

// increments date based from today's date on number of days specified
export const incrementer = (date, days) => {
date.setDate(date.getDate() + days);
return date;
}