Answers for "compare two dates in javascript yyyy-mm-dd"

6

compare two dates in javascript yyyy-mm-dd

// Shows if one date is gerater than the other returns True/False.
var date1 = '2015-08-20 09:38:20';
var date2 = '2015-08-20 08:00:00';
var date1Updated = new Date(date1.replace(/-/g,'/'));  
var date2Updated = new Date(date2.replace(/-/g,'/'));
console.log(date1Updated > date2Updated);
Posted by: Guest on August-28-2021

Code answers related to "compare two dates in javascript yyyy-mm-dd"

Code answers related to "Javascript"

Browse Popular Code Answers by Language