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.

P.S.
  • 15,970
  • 14
  • 62
  • 86

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>
P.S.
  • 15,970
  • 14
  • 62
  • 86
  • 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? – P.S. Sep 23 '17 at 17:49