I\'ve created this script to calculate the date for 10 days in advance in the format of dd/mm/yyyy:
var MyDate = new Date(); var MyDateString = new Date(); M
As @John Henckel suggests, starting using the toISOString() method makes things easier
const dateString = new Date().toISOString().split('-'); const year = dateString[0]; const month = dateString[1]; const day = dateString[2].split('T')[0]; console.log(`${year}-${month}-${day}`);