Answers for "check if date is current date javascript"

3

js check if date is today

const isToday = (someDate) => {
  const today = new Date()
  return someDate.getDate() == today.getDate() &&
    someDate.getMonth() == today.getMonth() &&
    someDate.getFullYear() == today.getFullYear()
}
Posted by: Guest on January-13-2021

Code answers related to "check if date is current date javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language