Answers for "check whether the time and date is same as the one right now javascript"

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

Code answers related to "check whether the time and date is same as the one right now javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language