Skip to content

Instantly share code, notes, and snippets.

@sayyedhammadali
Created October 3, 2021 10:01
Show Gist options
  • Save sayyedhammadali/6d13fef15559ba080625c1122fd44b4c to your computer and use it in GitHub Desktop.
Save sayyedhammadali/6d13fef15559ba080625c1122fd44b4c to your computer and use it in GitHub Desktop.
Check if Date is Valid
const isDateValid = (...val) => !Number.isNaN(new Date(...val).valueOf());
isDateValid("December 17, 1995 03:24:00");
// Result: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment