JS的typeof力所能及已经力所不及

Posted plortinus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS的typeof力所能及已经力所不及相关的知识,希望对你有一定的参考价值。

typeof返回值列表

技术分享图片

typeof的作用

返回参数的类型

typeof能判断的类型

  1. String类型: typeof ‘a‘ === ‘string‘
  2. Undefined类型: typeof undefined === ‘undefined‘
  3. Boolean类型: typeof true === ‘boolean‘
  4. Number类型: typeof 22 === ‘number‘
  5. Symbol类型: typeof Symbol() === ‘symbol‘
  6. Function类型:typeof function(){} === ‘function‘

typeof不能判断的类型

  1. Null类型: typeof null === ‘object‘
  2. Array类型: typeof [] === ‘object‘
  3. 除去Array/Function类型的对象: typeof {} === ‘object‘

typeof不能判断的类型,该如何去判断?

  1. Null类型的值有且仅有一个值null 因此可以通过值比较进行判断:

    const a = null
    if (a === null) {
      console.log(‘a是Null类型‘)
    } else {
      console.log(‘a不是Null类型‘)
    }
  2. 判断是否是数组

    Object.prototype.toString.call([]) === ‘[Object Array]‘
  3. 判断是否是普通对象

    Object.prototype.toString.call({}) === ‘[Object Object]‘

以上是关于JS的typeof力所能及已经力所不及的主要内容,如果未能解决你的问题,请参考以下文章

成都信必优信息技术有限公司--Node.Js Developer!

团队模式

求此螺杆传动结构电机力所需力矩及转速.......

回归 | js实用代码片段的封装与总结(持续更新中...)

慰问敬老院活动方案

诚征译者 | 尝试尽自己所能,来解释我所了解的某些片段