typeof 常见返回值

typeof []; // object
typeof null; // object
typeof undefined; // undefined
typeof NaN; // number
typeof {}; // object
typeof 'String'; // string
typeof true; // boolean
function abc() {}
typeof abc; // function
Number(undefined); // NaN
Number(null); // 0
Last Updated:
Contributors: zhangfei