JavaScript领域中[[intrinsics]]
属性的内容是什么?
我已经阅读了一些规范,无法完全解释那里的描述:
记录其字段名称是内部键,其值是 对象
规范的相关位:https://people.mozilla.org/~jorendorff/es6-draft.html#sec-code-realms
编辑:内置对象是内在对象吗?像数字,数组等?
答案 0 :(得分:1)
[[intrinsics]]
属性定义为here。它由内置对象组成,如Array
,Number
,Math
,Generator
,NaN
等。
它还包含Object.prototype
,Function.prototype
,ThrowTypeError
属性的定义(不确定是什么,超出表面解释)