関数宣言と関数実行コンテキストに入ったときに割り当てられる内部スコープ プロパティの違いは何ですか?
意味:
[[Scope]] property is already written and stored in function object. [[Scope]] in contrast with Scope (Scope chain) is the property of a function instead of a context.
リンク:( http://dmitrysoshnikov.com/ecmascript/chapter-4-scope-chain/#function-creation )
つまり、関数が宣言されるとすぐにスコープ プロパティが割り当てられるか、実行時にスコープ プロパティが割り当てられます。