🔰runtime
the period when a program is running (generally after compile-time).
determined at compile-time.
but created at runtime (each time a scope needs to run).
identifiers are registered to respective scope during compile-time.
but in sloppy mode, you can cheat it at runtime. ( 👉 modify current scope at runtime❗️❗)
is not fixed in a method.
is passed (at runtime) by the function call. 👉 method binding.
parameter(s) live in function's definition (compile-time)
Last updated