博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Object.prototype.toString.call()进行类型判断
阅读量:6484 次
发布时间:2019-06-23

本文共 1329 字,大约阅读时间需要 4 分钟。

[javascript] 
 
  1.    op = Object.prototype,  
  2.    ostring = op.toString,  
  3. ...  
  4.   
  5. function isFunction(it) {  
  6.         return ostring.call(it) === '[object Function]';  
  7.     }  
  8.   
  9.     function isArray(it) {  
  10.         return ostring.call(it) === '[object Array]';  
  11.     }  

最近在看requireJS的源码时,看到上面一段代码,很是好奇,为啥进行类型判断时使用Object.prototype.toString? 如果是我的话就直接用typeof得了,后来查阅了一些资料:

 

 

typeof

[plain] 
 
  1. 在使用 typeof 运算符时采用引用类型存储值会出现一个问题,无论引用的是什么类型的对象,它都返回 "object"。  

 

 

ECMA 对Object.prototype.toString的解释

 

[plain] 
 
  1. Object.prototype.toString ( )  
  2.   
  3. When the toString method is called, the following steps are taken:  
  4.   
  5. If the this value is undefined, return "[object Undefined]".  
  6. If the this value is null, return "[object Null]".  
  7. Let O be the result of calling ToObject passing the this value as the argument.  
  8. Let class be the value of the [[Class]] internal property of O.  
  9. Return the String value that is the result of concatenating the three Strings "[object ", class, and "]".  
[javascript] 
 
    1. var oP = Object.prototype,  
    2. toString = oP.toString;  
    3.   
    4. console.log(toString.call([123]));//[object Array]  
    5. console.log(toString.call('123'));//[object String]  
    6. console.log(toString.call({a: '123'}));//[object Object]  
    7. console.log(toString.call(/123/));//[object RegExp]  
    8. console.log(toString.call(123));//[object Number]  
    9. console.log(toString.call(undefined));//[object Undefined]  
    10. console.log(toString.call(null));//[object Null]  
    11. //....  

转载地址:http://doiuo.baihongyu.com/

你可能感兴趣的文章
App工程结构搭建:几种常见Android代码架构分析
查看>>
使用openssl进行证书格式转换
查看>>
Callable和Future
查看>>
少用数字来作为参数标识含义
查看>>
ScrollView中嵌套ListView
查看>>
观察者模式
查看>>
在properties.xml中定义变量,在application.xml中取值问题
查看>>
cell reuse & disposebag
查看>>
【故障处理】ORA-12545: Connect failed because target host or object does not exist
查看>>
js判断移动端是否安装某款app的多种方法
查看>>
学习angularjs的内置API函数
查看>>
4、输出名称 Exported names
查看>>
Pre-echo(预回声),瞬态信号检测与TNS
查看>>
【转载】如何发送和接收 Windows Phone 的 Raw 通知
查看>>
poj2378
查看>>
Java文件清单列表
查看>>
js url传值中文乱码之解决之道
查看>>
[LeetCode] Reverse String 翻转字符串
查看>>
学习iOS【3】数组、词典和集合
查看>>
Hessian 原理分析--转
查看>>