Guest User

Untitled

a guest
Apr 24th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. function calculateDates (days, replenishmentDate) {
  2. let result = new Date(replenishmentDate.getTime() + days * 24 * 60 * 60 * 1000)
  3. return result
  4. }
Add Comment
Please, Sign In to add comment