A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates with support for timezone through Moment Timezone plugin.

Demo Page Timezone Demo Page github.com Project Link github moment timezone

Moment & Timezones Date/Time Examples

Format Dates

moment().format('MMMM Do YYYY, h:mm:ss a');
moment().format('dddd'); 
moment().format("MMM Do YY");
moment().format('YYYY [escaped] YYYY');
moment().format();

Multiple Locale Support

moment.locale();
moment().format('LT');
moment().format('LTS');
moment().format('L');
moment().format('l');
moment().format('LL');
moment().format('ll');
moment().format('LLL');
moment().format('lll');
moment().format('LLLL');
moment().format('llll');