instanceOf

Returns true if the specified object is of the specified object type.

Syntax

object instanceof objectType

Example

theDay=new Date(1995, 12, 17)
if (theDay instanceof Date) {
   doThis; 
} 
text_javascript aptana_docs