Answers for "javascript add business days to a date"

1

javascript add business days to date

function add_bus_days(date, busDays) { // add business days to a date
                var wkdy = date.getDay(); // get weekday number
                var addDays = wkdy >= 3 ? (busDays + 2) : busDays; // if it's wednesday or later set add days to 5 instead of 3 to account for the weekend
                date.setDate(date.getDate() + addDays); // add days to current date
                return date
            }
// usage
var dt = new Date(); // get date
newDate = add_bus_days(dt, 3) // add 3 business days
Posted by: Guest on September-27-2021
3

javascript date add days

function addDays(originalDate, days){
  cloneDate = new Date(originalDate.valueOf());
  cloneDate.setDate(cloneDate.getDate() + days);
  return cloneDate;
}

let appointment = new Date("February 12, 2021 00:00:00");
let newAppointment = addDays(appointment, 7);

console.log(appointment.getDate()); // 12
console.log(newAppointment.getDate()); // 19
Posted by: Guest on February-28-2021

Code answers related to "javascript add business days to a date"

Code answers related to "Javascript"

Browse Popular Code Answers by Language