const isType = type => target => [object ${type}] === Object.prototype.toString.call(target)
const isArray = isType('Array')
console.log(isArray([])) // true
使用 Object.prototype.toString 配合闭包,通过传入不同的判断类型来返回不同的判断函数,一行代码,简洁优雅灵活(注意传入 type 参数时首字母大写)
不推荐将这个函数用来检测可能会产生包装类型的基本数据类型上,因为 call 会将第一个参数进行装箱操作