Can you help me with a function that receive a parameter which is the calendaristic date(12.4.2020) and returning me two dates that represent dates of monday and sunday(11.30.2020 - 12.06.2020).
What i have until now is:
function getWeek(d){
findDayOfWeek = new Date(d).getDay(); // for exemple if d is 12.04.2020 that line will return 5 that mean friday
}
but now i'm blocked. I don't know how to continue that.
Thank you!
You can create 2 functions which return firstDayOfWeek and lastDayOfWeek like
and
now you can call these functions