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)
– Francisco