i'm trying to get the difference between 2 dates in hours using momentjs, 
but i'm unable to get hours count.
here is what i have tried,
var date1 = moment('2016-10-08 10:29:23');
var date2 = moment('2016-10-08 11:06:55');
var diff = date2.diff(date1);
console.log(diff);
Question:i want t get result like 1 day 4 hrs, 4 hrs 2 min etc
 
    