Сделать неверную дату в JS

function isValidDate(d) {
  return d instanceof Date && !isNaN(d);
}
Muddy Mouse