var arr = new Array();
let res=Object.prototype.toString.call(arr);
console.log(res);
if(res=='[object Array]'){
alert(‘我是数组类型’);
}
或者
function a(){}
let res=Object.prototype.toString.call(a);
console.log(res);
if(res=='[object Function]'){
alert('我是函数类型');
}