How to compare dates in Angularjs?

Compare dates in Angularjs

  • I'm using ng-show in a page that I'm creating: <td ng-show="week.EndDate > controller.currentDate"> where week is an object with a property EndDate and currentDate is set in my controller: currentDate = new Date(); My ng-show fails whether I set the dates >, <, or =. I printed out my dates and this is what they are: week.Date = 2014-11-07 controller.currentDate = 2015-07-09T21:54:40.655Z I'm not sure if the issue is being caused by the difference in format or not. If so how can I correct this, if not, is there another way to compare dates?

  • Answer:

    You should either convert your week.EndDate string to a Date object or wrap your comparison in a function that converts it to a date. ng-show="convertToDate(week.EndDate) > controller.currentDate" The only thing you need to keep in mind is that if you convert week.EndDate permanently to a Date object you might need to convert it back to your desired format when you want to store it somewhere for example.

Ryan Sayles at Stack Overflow Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.