isObject
"A surplus of effort could overcome a deficit of confidence." —Sonia Sotomayor
本文为 《lodash 源码阅读》 系列文章,后续内容会在 github 中发布,欢迎 star,gitbook 同步更新。
源码
知识点
null
typeof
val 类型
结果
Undefined
"undefined"
Null
"object"
Boolean
"boolean"
Number
"number"
String
"string"
Symbol
"symbol"
Object(原生,且没有实现 [[call]])
"object"
Object(标准宿主,且没有实现 [[call]])
"object"
Object(原生或者宿主且实现了 [[call]])
"function"
Object(非标准宿主且没实现 [[call]])
由实现定义,但不能是 "undefined", "boolean", "number", or "string"
相关链接
Last updated
Was this helpful?