🚧 施工中
Last updated 2 years ago
Was this helpful?
⟩ ⟩ function scope
scope created with a function.
compare: block scope
var has no block scope❗️ - var only has function scope.
... each function gets its own scope, sometimes called the "activation object". 👉
not block:
object literal / class / switch ( no block scope)
function's is different from a block scope
📗
ringojs ⟩ ⭐️