I am using this function to get the mm/dd/yy
of tomorrow using javascript:
(dt.getMonth() + 1) + "/" + (dt.getDate() +1 ) + "/" + dt.getFullYear()
Todays date is 9/12/19 and the code above returns 9/13/19. However, I am not sure what this code returns on the day of 9/30/2019
. I am not sure how to test this scenario. Does this return 10/1/2019
or does it return 9/31/2019
which is incorrect.