Get month in mm format in javascript

前端 未结 9 994
悲&欢浪女
悲&欢浪女 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:47

    An alternative with ES6 template strings

    A solution for mm/yyyy. Not quite the question, but I guess remove the second part.

    const MonthYear = `${dateObj.getMonth() < 10 ? '0' : '' }${dateObj.getMonth()+1}/${dateObj.getFullYear()}`
    
    
    const Month = `${dateObj.getMonth() < 10 ? '0' : '' }${dateObj.getMonth()+1}`
    
    

提交回复
热议问题