monthStart of Date, Methods Webix Docs

gets the start of the month

Date monthStart(Date date);

Datea date object
Datea date object adjusted to the start of the month

Example

var date1 = new Date(2012,11,12,8,35);
var date2 = webix.Date.monthStart(date1);
 
console.log(date1); // -> Wed Dec 12 2012 08:35:00 GMT+0300
console.log(date2); // -> Sat Dec 01 2012 00:00:00 GMT+0300

See also

  • API

  • Back to top