nextDay

Returns the next day.

Parameters

targetDate Date

The base date for returning the next day.

Returns

Date Returns the next day.

Example

<script>
    var targetDate = new Date(2016,10,5,15,25,11);
    var nextDay = kendo.date.nextDay(targetDate);

/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(nextDay); //Sun Nov 06 2016 15:25:11 GMT+0200 (FLE Standard Time)
</script>
In this article