Date.prototype.addBizDays = function(n){
var day = this.getDay();
var d = new Date();
...
JavaScript Business Days
//Given a date, returns a new date object that contains the start of the week
function startOfWeek(d){
var beg = new Date(d);
...
JavaScript Week Of Date
The code takes a date objec...
The function add or substra...