momentjs returns wrong day nameGet the name of an object's typeAdd days to JavaScript Dateevent.preventDefault() vs. return falseWhy does ++[[]][+[]]+[+[]] return the string “10”?What is the explanation for these bizarre JavaScript behaviours mentioned in the 'Wat' talk for CodeMash 2012?How do I return the response from an asynchronous call?MomentJS max and min return wrong valuesComparing 2 dates with momentJSAdd day to date with momentjsParsing week day range momentjs

Store Credit Card Information in Password Manager?

Can disgust be a key component of horror?

Why can Carol Danvers change her suit colours in the first place?

Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?

Is there an injective, monotonically increasing, strictly concave function from the reals, to the reals?

What is the evidence for the "tyranny of the majority problem" in a direct democracy context?

Calculating total slots

Can a Canadian Travel to the USA twice, less than 180 days each time?

How could a planet have erratic days?

Does the Linux kernel need a file system to run?

Invalid date error by date command

Lowest total scrabble score

Can a stoichiometric mixture of oxygen and methane exist as a liquid at standard pressure and some (low) temperature?

How do apertures which seem too large to physically fit work?

Yosemite Fire Rings - What to Expect?

Electoral considerations aside, what are potential benefits, for the US, of policy changes proposed by the tweet recognizing Golan annexation?

It grows, but water kills it

Does IPv6 have similar concept of network mask?

Biological Blimps: Propulsion

Can a College of Swords bard use a Blade Flourish option on an opportunity attack provoked by their own Dissonant Whispers spell?

What are the advantages of simplicial model categories over non-simplicial ones?

What is Cash Advance APR?

Does Doodling or Improvising on the Piano Have Any Benefits?

Is there a way to get `mathscr' with lower case letters in pdfLaTeX?



momentjs returns wrong day name


Get the name of an object's typeAdd days to JavaScript Dateevent.preventDefault() vs. return falseWhy does ++[[]][+[]]+[+[]] return the string “10”?What is the explanation for these bizarre JavaScript behaviours mentioned in the 'Wat' talk for CodeMash 2012?How do I return the response from an asynchronous call?MomentJS max and min return wrong valuesComparing 2 dates with momentJSAdd day to date with momentjsParsing week day range momentjs













0















This returns Wednesday, but it's Thursday



console.log(moment("7-03-2019").format("dddd")); //Wednesday


7-03-2019 is Thursday but moment("7-03-2019").format("dddd")



console.log(moment().format("dddd")); //Thursday


What am I doing wrong?



Fiddle: https://jsfiddle.net/da0t4pnx/










share|improve this question
























  • July 3, 2019 is a Wednesday,

    – Yannick Y
    Mar 7 at 6:37
















0















This returns Wednesday, but it's Thursday



console.log(moment("7-03-2019").format("dddd")); //Wednesday


7-03-2019 is Thursday but moment("7-03-2019").format("dddd")



console.log(moment().format("dddd")); //Thursday


What am I doing wrong?



Fiddle: https://jsfiddle.net/da0t4pnx/










share|improve this question
























  • July 3, 2019 is a Wednesday,

    – Yannick Y
    Mar 7 at 6:37














0












0








0








This returns Wednesday, but it's Thursday



console.log(moment("7-03-2019").format("dddd")); //Wednesday


7-03-2019 is Thursday but moment("7-03-2019").format("dddd")



console.log(moment().format("dddd")); //Thursday


What am I doing wrong?



Fiddle: https://jsfiddle.net/da0t4pnx/










share|improve this question
















This returns Wednesday, but it's Thursday



console.log(moment("7-03-2019").format("dddd")); //Wednesday


7-03-2019 is Thursday but moment("7-03-2019").format("dddd")



console.log(moment().format("dddd")); //Thursday


What am I doing wrong?



Fiddle: https://jsfiddle.net/da0t4pnx/







javascript momentjs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 6:37







Abhi

















asked Mar 7 at 6:31









AbhiAbhi

47511224




47511224












  • July 3, 2019 is a Wednesday,

    – Yannick Y
    Mar 7 at 6:37


















  • July 3, 2019 is a Wednesday,

    – Yannick Y
    Mar 7 at 6:37

















July 3, 2019 is a Wednesday,

– Yannick Y
Mar 7 at 6:37






July 3, 2019 is a Wednesday,

– Yannick Y
Mar 7 at 6:37













2 Answers
2






active

oldest

votes


















0














Moment.js is parsing the given input in "MM-DD-YYYY" format.



It would benefit if you mentioned the format with the input. Refer: https://momentjs.com/docs/#/parsing/string-format/



Example:



console.log(moment("7-03-2019", "DD-MM-YYYY").format("dddd"));





share|improve this answer






























    0














    July 3, 2019 (07-03-2019) is a Wednesday (because the dates are in the format MM-DD-YYYY)
    If you want March 7, 2019 (03-07-2019) you should do



    console.log(moment("03-07-2019").format("dddd")); //Thursday





    share|improve this answer






















      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55037416%2fmomentjs-returns-wrong-day-name%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Moment.js is parsing the given input in "MM-DD-YYYY" format.



      It would benefit if you mentioned the format with the input. Refer: https://momentjs.com/docs/#/parsing/string-format/



      Example:



      console.log(moment("7-03-2019", "DD-MM-YYYY").format("dddd"));





      share|improve this answer



























        0














        Moment.js is parsing the given input in "MM-DD-YYYY" format.



        It would benefit if you mentioned the format with the input. Refer: https://momentjs.com/docs/#/parsing/string-format/



        Example:



        console.log(moment("7-03-2019", "DD-MM-YYYY").format("dddd"));





        share|improve this answer

























          0












          0








          0







          Moment.js is parsing the given input in "MM-DD-YYYY" format.



          It would benefit if you mentioned the format with the input. Refer: https://momentjs.com/docs/#/parsing/string-format/



          Example:



          console.log(moment("7-03-2019", "DD-MM-YYYY").format("dddd"));





          share|improve this answer













          Moment.js is parsing the given input in "MM-DD-YYYY" format.



          It would benefit if you mentioned the format with the input. Refer: https://momentjs.com/docs/#/parsing/string-format/



          Example:



          console.log(moment("7-03-2019", "DD-MM-YYYY").format("dddd"));






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 7 at 6:37









          RoysonRoyson

          5302514




          5302514























              0














              July 3, 2019 (07-03-2019) is a Wednesday (because the dates are in the format MM-DD-YYYY)
              If you want March 7, 2019 (03-07-2019) you should do



              console.log(moment("03-07-2019").format("dddd")); //Thursday





              share|improve this answer



























                0














                July 3, 2019 (07-03-2019) is a Wednesday (because the dates are in the format MM-DD-YYYY)
                If you want March 7, 2019 (03-07-2019) you should do



                console.log(moment("03-07-2019").format("dddd")); //Thursday





                share|improve this answer

























                  0












                  0








                  0







                  July 3, 2019 (07-03-2019) is a Wednesday (because the dates are in the format MM-DD-YYYY)
                  If you want March 7, 2019 (03-07-2019) you should do



                  console.log(moment("03-07-2019").format("dddd")); //Thursday





                  share|improve this answer













                  July 3, 2019 (07-03-2019) is a Wednesday (because the dates are in the format MM-DD-YYYY)
                  If you want March 7, 2019 (03-07-2019) you should do



                  console.log(moment("03-07-2019").format("dddd")); //Thursday






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 7 at 6:40









                  Yannick YYannick Y

                  1,9051121




                  1,9051121



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55037416%2fmomentjs-returns-wrong-day-name%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                      Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                      Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved