|
|
|
|
|
by mfontani
1303 days ago
|
|
Don't forget there's also "state $var" and "local $var", which declare other types of variables. They're there because they.. are useful. Same as why there's "var", "let" or "const" in JS. Different scoping / types of variable slots for the interpreter. A "my" variable declares a variable valid in the current scope; an "our" variable will be available at the package level; a "state" variable is initialised only once, but has the same scope as a "my" variable; a "local" variable "locally overrides" for the current block (and any code called by the current block) the value of said variable. They all have their uses, and that's why they exist. |
|
(Although I agree that a javascript programmer might get confused by declaring an object or an array as a const and then being allowed to mutate it.)