Javascript数据结构及原型链
2019-03-05 16:29:55 13 举报
javascript数据结构
作者其他创作
大纲/内容
number
__proto__
Function
symbol
内置函数
内置构造函数
decodeURI/decodeURIComponent(...)
null
内置对象
prototype
Function.prototype
constructor
Object.prototype
string
Array/Date/RegExp/String/Number/Boolean/Symbol/Map/Set(...)
Object instanceof Function 和 Function instanceof Object 鸡生蛋蛋生鸡问题解释:instanceof 检测的是原型,A instanceof B 判断的是A.__proto__ === B.prototype || A.__proto.__proto === B.prototype || ... 一直到原型链结束。A instanceof B 可以理解为A是否继承了B.prototype,Object(A)指的是Object函数,而Object(B)指的是Object.prototype对象,Function亦然。
GeneratorFunction.prototype
GeneratorFunction
集合数据
Array(...).prototype
实例化new Function()等同于Function.prototype.constructor()
Object
Math/JSON
Generator
原始数据
boolean
undefined
收藏
0 条评论
下一页