var firstDate=moment('Sat Jul 30 2016 00:00:00 GMT+0530 (India Standard Time)');
var secondDate=moment('Fri Jul 29 2016 10:56:39 GMT+0530 (India Standard Time)');
console.log(firstDate.diff(secondDate,'days'));
Expected Output: 1
Actual Output: -0
Any reason why this is happening?