I have a date in the format mm/dd/yy and want to add 30 days to it. I am just curious the best method to do this? I am new to javascript so examples would be he
mm/dd/yy
try
new Date(+yourDate - 30 *86400000)
var yourDate = new Date() var newDate = new Date(+yourDate - 30 *86400000) console.log(newDate)