New to Kendo UI for jQueryStart a free 30-day trial

AddDays

methods

Add days to a date object.

Parameters:targetDateDate

The date object to add days to.

numberOfDaysToAddNumber

The number of days to be added to the target date.

Returns:Date

Returns a new date object with added days.

<script>
    var targetDate = new Date(2016,10,5,15,25,11);
    var newDate = kendo.date.addDays(targetDate, 4);
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(newDate); // Wed Nov 09 2016 15:25:11 GMT+0200 (FLE Standard Time)
</script>
Not finding the help you need?
Contact Support