How does js get the date from last Sunday to today

problem description

js how to get the date from last Sunday to today, ask

the environmental background of the problems and what methods you have tried

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

Nov.08,2021

let getDValue = (date) => now.getDate()-(now.getDay()||7)

let now = new Date();
let sunday = new Date();
sunday.setDate(getDValue(now));

console.log(sunday)//Date
Menu