moment js set locale code example
Example 1: format a date moment
moment(testDate).format('MM/DD/YYYY');
Example 2: momentjs range
const start = new Date(2012, 0, 15);
const end = new Date(2012, 4, 23);
const range = moment.range(start, end);
Example 3: momentjs docs
npm install moment
Example 4: moment with locales
moment-with-locales.js