どのように現在の日付に基づいて、月曜日と週末を計算しますか?現在の日付を書式設定します.


現在の時間を取得して、05-08形式で展示しています.月日だけ一桁で0を補えば、二人は正常に表示されます. 
    const myDate = new Date();
    const today = myDate.toLocaleDateString().split('/').join('-');
    let times = today.split('-');
    const Year = times[0];
    const Month = times[1];
    const Day = times[2];
    let mounth='';
    if(Month.length===1){
       mounth='0'+Month
    }else{
       mounth=Month
    }
    let day='';
    if(Day.length===1){
       day='0'+Day
    }else{
       ay=Day
    }
    const Newtoday=mounth+'-'+day;
 どのように現在の日付に基づいて月曜日と週末を計算しますか?
const myDate = new Date();
const Monday = new Date(myDate-(myDate.getDay()-1)*86400000);
const Sunday = new Date((Monday/1000+6*86400)*1000);