Posts by YagoB. • 1 point
1 post
-
0
votes2
answers1461
viewsA: Date and time in Brazilian format dd/mm/YYYY HH:MM:SS
try this: function now(){ let date = new Date(); let hour = document.querySelector('#hour'); // select the element for print (DOM) hour.textContent = data.toLocaleTimeString('pt-BR'); } let…
javascriptanswered YagoB. 1