type of的返回值有哪些
typeof 10; // number
typeof 'time'; //string
typeof undefined; // undefined
typeof null; // object
typeof Object; // object
typeof function; // function
typeof true; // boolean
typeof Symbol(); // symbol
typeof array; // object