js 中typeOf用法 判断数据类型
Posted fm060
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 中typeOf用法 判断数据类型相关的知识,希望对你有一定的参考价值。
<script type="text/javascript"> var aa = ‘test string‘; var bb={ ta:‘12345‘, tb:‘456789‘ } var cc=false var ee=function(){ console.log(8888) } console.log(typeof aa); // ‘string‘ console.log(typeof 90); // ‘number‘ console.log(typeof bb); // ‘number‘ console.log(typeof cc); // ‘number‘ console.log(typeof dd); // ‘number‘ console.log(typeof ee); // ‘number‘ </script>
以上是关于js 中typeOf用法 判断数据类型的主要内容,如果未能解决你的问题,请参考以下文章
pythonpython中isinstance判断变量类型用法