JavaScript Detect se o objeto é data
var myDate=new Date();
if(myDate instanceof Date){
//im a hot Date
}
Grepper
var myDate=new Date();
if(myDate instanceof Date){
//im a hot Date
}
//checks if is object, null val returns false
function isObject(val) {
if (val === null) { return false;}
return ( (typeof val === 'function') || (typeof val === 'object') );
}
var person = {"name":"Boby Snark"};
isObject(person);//true
// use instanceof to determine the "type of" Date object
if (dateObj instanceof Date) {}