JS小tips 之 toString返回变量类型
Posted idealllllidiottttt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS小tips 之 toString返回变量类型相关的知识,希望对你有一定的参考价值。
- Object.prototype的toString()可以返回变量类型
- 而一般都重写了这个方法
- 借助call()
function classOf(x){ if(x === null) return "NULL"; if(x === undefined) return undefined; return Object.prototype.toString.call(x).slice(8,-1); } var x = 13; console.log(classOf(x));
以上是关于JS小tips 之 toString返回变量类型的主要内容,如果未能解决你的问题,请参考以下文章
小tips:在JS语句执行机制涉及的一种基础类型Completion