The following code gets me the date format as DD.MM.YYYY, which is what I want:
const todayDate = new Date().toLocaleString("ru", {
        day: 'numeric',
        month: '2-digit',
        year: '2-digit'
      })
How do I add days to todayDate (for example, add four days)?
 
     
    