0

I'm trying to use moment.js in my project, what I want is to alert the date in French, I tried this:

alert(moment('2012-10-14', 'YYYY-MM-DD', 'fr', true););

But it alerts it in English, help please.

Commercial Suicide
  • 14,875
  • 14
  • 62
  • 80

1 Answers1

0

You need to use something like this:

alert(moment('2012-10-14').format('dddd Do MMMM YYYY'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
Commercial Suicide
  • 14,875
  • 14
  • 62
  • 80
  • i want it in frensh like that: lundi 12 janvier 2017 –  Sep 23 '17 at 17:44
  • @imsiimsi, *"lundi", "janvier "*, what the language is it, French? Momentjs can convert inly in English. I have updated the answer. Is it an expected result? – Commercial Suicide Sep 23 '17 at 17:49