Challenge: Validate the Date
This challenge will test your skills in implementing arrow functions and "prototype.toString" in JavaScript.
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 not. In ...