获取当前时间展示为05-08的形式,只有月日如果只有一位数就补0,优化?

获取当前时间展示为05-08的形式,只有月日如果只有一位数就补0,两位正常显示,这是现在的写法,可不可以优化一下我觉得现在写的比较麻烦?
constmyDate=newDate();
consttoday=myDate.toLocaleDateString().split('/').join('-');
lettimes=today.split('-');
constYear=times[0];
constMonth=times[1];
constDay=times[2];
letmounth='';
if(Month.length===1){
mounth='0'+Month
}else{
mounth=Month
}
letday='';
if(Day.length===1){
day='0'+Day
}else{
ay=Day
}
constNewtoday=mounth+'-'+day;
ABOUTYOU
浏览 677回答 2
2回答

湖上湖

constgetMonthDay=(str='-')=>{constarr=newDate().toLocaleDateString().match(/\d+/g).slice(1)returnarr.map(e=>e.padStart(2,0)).join(str)}

九州编程

constmyDate=newDate();varDay=myDate.getDate()>9?myDate.getDate().toString():'0'+myDate.getDate();varMonth=myDate.getMonth()+1>9?(myDate.getMonth()+1).toString():'0'+(myDate.getMonth()+1);constNewtoday=Month+'-'+Day;最好封装成公共函数,重复利用;
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript