Devido à alta demanda de acessos, garantimos a apresentação somente até: .
(function() { function formatDate(date) { var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }; return date.toLocaleDateString('pt-BR', options); } document.addEventListener('DOMContentLoaded', function() { var currentDate = new Date(); var dateString = formatDate(currentDate); document.getElementById("currentDate").innerHTML = dateString; }); })();