Is there a way to retrieve the date in ISO format three days from now?
I know how to get today's date using this code snippet, but I'm uncertain about how to calculate the ISO date for three days in the future.
const today = new Date().toISOString().substring(0, 10);