Hi all! I’m working on an automation script which needs to get the current date so that it can be formatted for a URL. However, calling the .getMonth()
function on a date object returns an incorrect month. I can of course correct for this by adding 1 to each month but would prefer not to.
I’ve created a new script which creates a date and logs the resulting month to demonstrate my issue:
The code:
The resulting console logs:
Has anyone encountered this issue before? Thanks!