Posts by paulo_luzz • 61 points
1 post
-
6
votes4
answers729
viewsQ: How to get the month formatted with zero left in Typescript
I’m trying to get the month in Typescript with Node.js, I’m trying to get it like this: const today = new Date(); var todayMonth = today.getMonth() + 1 if(todayMonth < 10) { todayMonth = '0' +…