通过typeof来判断
typeof undefined // undefined typeof 1 // number typeof '1' // string typeof true // boolean typeof function() {} // function // 以下类型需要别的方式判断 typeof null // object typeof {} // object typeof [] // object
通过instanceof来判断
{} instanceof Object // true [] instanceof Array // true
null直接全等判断即可
null === null // true