类型判断
Posted blhgys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类型判断相关的知识,希望对你有一定的参考价值。
判断核心使用Object.prototype.toString,这种方式可以准确的判断数据类型。
/**
* @param {any} target
* @param {string} type
* @return {boolean}
*/
function isType(target, type) {
let targetType = Object.prototype.toString.call(target).slice(8, -1).toLowerCase()
return targetType === type.toLowerCase()
}
使用
isType([], ‘Array‘) // true
isType(/d/, ‘RegExp‘) // true
isType(new Date(), ‘Date‘) // true
isType(function(){}, ‘Function‘) // true
isType(Symbol(1), ‘Symbol‘) // true
以上是关于类型判断的主要内容,如果未能解决你的问题,请参考以下文章