Skip to content

Instantly share code, notes, and snippets.

View Ref-Bit's full-sized avatar
🔭
Learning...

Refaat Bitar Ref-Bit

🔭
Learning...
View GitHub Profile
@Ref-Bit
Ref-Bit / addDays
Created October 18, 2022 13:09
Add days to date object
const addDays = (date, days) => {
const result = new Date(date);
result.setDate(result.getDate() + days);
return result;
}