类型判断

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‘) // trueisType(/d/, ‘RegExp‘) // trueisType(new Date(), ‘Date‘) // trueisType(function(){}, ‘Function‘) // trueisType(Symbol(1), ‘Symbol‘) // true

以上是关于类型判断的主要内容,如果未能解决你的问题,请参考以下文章

关于判断一个文件是否是class文件

javascript常用代码片段

在代码片段中包含类型转换

对这个带有 & 不带 = 的代码片段返回类型感到非常困惑

js简洁代码片段

PHP常用代码片段