Posts by Williaan Lopes • 149 points
1 post
-
4
votes12
answers208289
viewsA: How to format date in Javascript?
new Date(myDateString).toLocaleDateString('pt-br'); Example: console.log(new Date('2021/01/07').toLocaleDateString('pt-br')); "07/01/2021" Try this…