Challenge: Validate the Date
Explore how to validate whether a date string creates a valid JavaScript Date object. Learn to distinguish valid and invalid dates by applying concepts of type coercion, and test your ability to implement a reliable isValidDate function.
We'll cover the following...
We'll cover the following...
Problem statement #
isValidDate function takes the parameter dateString, using it to create a Date object. Your task is to validate whether this date object is valid or ...