I would like to add 10 days to a date excluding holidays and weekends. Here is the code i am using but i am unable to figure out how to take out the holidays and weekends. Thanks for any help!!
var someDate = item.INITIAL_REQUEST;
var numberOfDaysToAdd = 10;
someDate.setDate(someDate.getDate() + numberOfDaysToAdd);
item.FINAL_REQUEST = someDate;