Answers for "check if the current date is today javascript"

1

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
6

get today's date javascript

var today = new Date();
Posted by: Guest on December-04-2019

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language