Answers for "how to no the 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
1

get today's date in js

let today = new Date().toISOString().slice(0, 10)

console.log(today)
Posted by: Guest on March-19-2021

Code answers related to "how to no the date is today javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language