Answers for "js date equality"

2

javascript check if two date are ugual

const isSameDate = (dateA, dateB) => {
  return dateA.toISOString() === dateB.toISOString();
};
const r = isSameDate(new Date(2010, 10, 20), new Date(2010, 10, 20));
console.log(r); //> true
Posted by: Guest on March-30-2020
20

compare dates in js

var date1 = new Date('December 25, 2017 01:30:00');
var date2 = new Date('June 18, 2016 02:30:00');

//best to use .getTime() to compare dates
if(date1.getTime() === date2.getTime()){
    //same date
}

if(date1.getTime() > date2.getTime()){
    //date 1 is newer
}
Posted by: Guest on July-23-2019
1

date compare in js

var x = new Date('2013-05-23');
var y = new Date('2013-05-23');

// less than, greater than is fine:
x < y; => false
x > y; => false
x === y; => false, oops!

// anything involving '=' should use the '+' prefix
// it will then compare the dates' millisecond values
+x <= +y;  => true
+x >= +y;  => true
+x === +y; => true
Posted by: Guest on November-10-2020
0

check if date equal js

...mapActions({
   startRefreshTokenWatcher: sharedTypes.REFRESH_TOKEN_WATCHER,
   stopRefreshTokenWatcher: sharedTypes.STOP_REFRESH_TOKEN_WATCHER
})
Posted by: Guest on April-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language