Thetypeof关键字是一个一元运算符,它返回一个字符串,该字符串给出参数的类型。
typeof[(]expression[)];
该运算符返回六个值,它们是boolean, function, number, object, string,和undefined.
theArray = new Array(); if (typeof(theArray) == 'object') { […] }