whyLocalVarCallLet.txt
ASCII text, with very long lines (336)
1title: Why local variables are called "let" 2date: 2022 Jan 10 3updated: 2024 Feb 2 4 5In JavaScript there are 3 different kinds of variables, global variables(using `var`), constants(`const`, and local variables`let`). All of the act a little differently from each other. Allow me to explain what they do. 6 7Global variables, made using `var`, are as they sound, global variables. Once defined, they can be used, edited, or redefined anywhere. 8 9Constants, defined with `const`, are constant, they cannot change, at all. 10 11Local variables, defined with `let`, are variables that can only be used in the place that it is defined, like a function, and it's children. 12 13Now that we has that established, *let*'s talk about how local variables got their name. 14 15Turns out "let" is a mathematical term. 16 17> The **"let" expression** may also be defined in mathematics, where it associates a Boolean condition with a restricted scope. 18> <cite>Quote from [Wikipedia "Let expression"](https://en.wikipedia.org/w/index.php?title=Let_expression&oldid=1187985658) as of <time>2024 Feb 2</time></cite> 19 20It was first used in programming in early languages like Basic. 21 22In case you're wondering, the main source is an answer on Stack Overflow: *"Why was the name 'let' chosen for block-scoped variable declarations in JavaScript?"*, answer by [exebook](https://stackoverflow.com/users/1968972), edited by [Pikamander2](https://stackoverflow.com/users/1741346); [link](https://stackoverflow.com/a/37917071). 23