Put date 5 days in advance

Asked

Viewed 66 times

1

Like, if today is July 14, it’s July 19 and if it was July 30, it’s August 4.

teste = new Array ("janeiro", "fevereiro", "março", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro")
TESTE = new Date


document.write ("Válido até dia " + TESTE.getDate () + " de " + teste [TESTE.getMonth() ]   +  ", corra e garanta sua vaga!")

How to change? (I know if the date of the wrong person will not work)

  • TESTE.setDate(TESTE.getDate() + 5)

1 answer

1


Just what you want?

let meses = ["janeiro", "fevereiro", "março", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro"];
let data = new Date();
data.setDate(data.getDate() + 5);
document.write("Válido até dia " + data.getDate() + " de " + meses[data.getMonth()] + ", corra e garanta sua vaga!<br>");
data = new Date(2019, 6, 30);
data.setDate(data.getDate() + 5);
document.write("Válido até dia " + data.getDate() + " de " + meses[data.getMonth()] + ", corra e garanta sua vaga!");

I put in the Github for future reference.

I’ve only added five on the days, and I’ve improved the code in general.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.