Answers for "get monday date of current week javascript"

0

js get the week monday to friday date

var currentDate = new Date();
var firstday = new Date(currentDate.setDate(currentDate.getDate() - currentDate.getDay())).toUTCString();
var lastday = new Date(currentDate.setDate(currentDate.getDate() - currentDate.getDay() + 7)).toUTCString();
console.log(firstday, lastday)
Posted by: Guest on January-04-2021
0

get date one week from now javascript

function nextweek(){
    var today = new Date();
    var nextweek = new Date(today.getFullYear(), today.getMonth(), today.getDate()+7);
    return nextweek;
}
Posted by: Guest on March-08-2020

Code answers related to "get monday date of current week javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language