JS判断数据类型最稳定方法
Posted 星云-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS判断数据类型最稳定方法相关的知识,希望对你有一定的参考价值。
JS判断数据类型最稳定的方法
function whatType(input)
let typeStr = Object.prototype.toString.call(input).match(/\\[object\\s(.*?)\\]/)
return typeStr && typeStr[1]
console.log(whatType(123)) // Number
console.log(whatType('abc')) // String
console.log(whatType(false)) // Boolean
console.log(whatType([1,2,3])) // Array
console.log(whatType(name:'lili')) // Object
console.log(whatType(undefined)) // Undefined
console.log(whatType(null)) // Null
console.log(whatType(function())) // Function
以上是关于JS判断数据类型最稳定方法的主要内容,如果未能解决你的问题,请参考以下文章