1moment().format(); // "2014-09-08T08:02:17-05:00" (ISO 8601, no fractional seconds)
2moment().format("dddd, MMMM Do YYYY, h:mm:ss a"); // "Sunday, February 14th 2010, 3:25:50 pm"
3moment().format("ddd, hA"); // "Sun, 3PM"
4moment('gibberish').format('YYYY MM DD'); // "Invalid date"
5
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