1const date = "2017-03-13";
2const time = "18:00";
3
4const timeAndDate = moment(date + ' ' + time);
5
6console.log(timeAndDate);
1moment().set('year', 2013);
2moment().set('month', 3); // April
3moment().set('date', 1);
4moment().set('hour', 13);
5moment().set('minute', 20);
6moment().set('second', 30);
7moment().set('millisecond', 123);
8
9moment().set({'year': 2013, 'month': 3});
10