moment locale tests

testing moment locales

by Daniel Lizik

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.13.0/moment-with-locales.js"></script>
<div class="msg"></div>
<a href="https://help.salesforce.com/apex/HTViewHelpDoc?id=admin_supported_locales.htm&language=en">Salesforce locales</a>

<p/>

JavaScript

moment.locale('ru'),
  locales = moment.locales();
console.log(moment.localeData()._longDateFormat.L);

var today = moment('2018-05-07'),
  months = moment.months(),
  weekdays = moment.weekdays(),
  weekdaysShort = moment.weekdaysShort();
console.log(weekdays, weekdaysShort);
$('div.msg').html(`
	${today.daysInMonth()} days in ${moment.months()[today.month()]}
	${weekdays[today.weekday()]}
  ${today.format('YYYY-MM-DD')}
`);