Posts by Clodoaldo Pereira Dias • 1 point
1 post
-
-2
votes1
answer29
viewsA: How to format the date to the Brazilian standard in an attribute of type "DATEONLY" using sequelize?
A good way for you to do this for data formatting is to use Moment.js. Examples in https://momentjs.com/; date = Moment(date). format("DD/MM/YYYY") as any;…