You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Date/Write a JavaScript function...

10 lines
353 B
JavaScript

var is_date = function(input) {
if ( Object.prototype.toString.call(input) === "[object Date]" )
return true;
return false;
};
console.log(is_date("October 13, 2014 11:13:00"));
console.log(is_date(new Date(86400000)));
console.log(is_date(new Date(99,5,24,11,33,30,0)));
console.log(is_date([1, 2, 4, 0]));