js date equality code example
Example 1: 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
Example 2: check if date equal js
...mapActions({
startRefreshTokenWatcher: sharedTypes.REFRESH_TOKEN_WATCHER,
stopRefreshTokenWatcher: sharedTypes.STOP_REFRESH_TOKEN_WATCHER
})