Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Comparing two datetime strings
Message
 
 
To
06/02/2018 15:52:55
General information
Forum:
Javascript
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01657934
Message ID:
01657937
Views:
38
>moment.js should be able to cope with these
>
>>This should be an easy question. I have two datetime strings like "02/05/2018 12:00" and "02/18/2018 14:41". I want to compare date portions of these strings to find if they are the same or different.
>>How can I do it?

I used this code which seems to work:
let newDate = new Date(new Date(val).toDateString());
                                let originalDate = new Date(new Date(modelValue).toDateString());
                                if (newDate.valueOf() !== originalDate.valueOf()) {
based on suggestion in StackOverflow.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform