输入 typeof function(){}后 返回类型才为function
。。。。。。。。。。。。。。。。。。。。
function是函数声明的关键字
你可以写:
console.log(typeof Function) //function
function a(){}
typeof(a)