function judgeType(arg) {
return Object.prototype.toString.call(arg).slice(8, Object.prototype.toString.call(arg).length - 1);
}
console.log(judgeType(arg));//arg参数可以是任何类型 返回arg的类型名
时间: 2024-10-04 11:57:53
function judgeType(arg) {
return Object.prototype.toString.call(arg).slice(8, Object.prototype.toString.call(arg).length - 1);
}
console.log(judgeType(arg));//arg参数可以是任何类型 返回arg的类型名