equal
compares two dates
boolean equal(Date datea,Date dateb);
| datea | Date | first date to compare |
| dateb | Date | second date to compare |
| boolean | true if both dates point to the same value |
Example
var date1 = new Date(2013,11,12,8,35);
var date2 = new Date(2012,11,12,8,35);
var result = webix.Date.equal(date1,date2);
console.log(result); // -> false
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.