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
原文地址:https://www.cnblogs.com/wuqilang/p/11348437.html