Get month in mm format in javascript

前端 未结 9 888
悲&欢浪女
悲&欢浪女 2020-12-31 02:03

How do I retrieve the month from the current date in mm format? (i.e. \"05\")

This is my current code:

var currentDate = new Date();
va         


        
9条回答
  •  傲寒
    傲寒 (楼主)
    2020-12-31 02:34

    One line solution:

    var currentMonth = (currentDate.getMonth() < 10 ? '0' : '') + currentDate.getMonth();
    

提交回复
热议问题