Hello, I have this function, but I do not know how I put one more date on the date, someone can help me.
var myVar = setTimeout(function(){ myTimer() });
function myTimer() {
var d = new Date();
var options = {weekday: 'long', month: 'long', year: 'numeric', day: 'numeric' }
var t = d.toLocaleDateString('pt-br', (options));
document.getElementById("demo").innerHTML = t;
}