Posts by Bruno • 11 points
1 post
-
1
votes3
answers370
viewsA: How to get the day with two houses in JS
My suggestion is to create an auxiliary function to return the date in the format you want. function getDataFormatada(data) { return data.getFullYear() + '-' + ('0' + (data.getMonth() +…
javascriptanswered Bruno 11