Never `useEffect` again or YOU_WILL_BE_FIRED
Never-ish
Jul 3, 20243 min read615

Search for a command to run...
Articles tagged with #javascript
Never-ish

Because wording matters

A nuance on top of how React's hooks flow is usually taught

Glossary A binding is a variable name (this I borrow from the previous glossary). Can be classified into one of two categories: A lexical binding, which can be determined at the lexing step of the compilation. Any variable or function declaration i...

Glossary A binding is a variable name. Variable declarators is the set of keywords that allow declaring variables in JS: var, let and const. What’s this article about? Well... it’s not about hoisting. It’s more about what hoisting isn’t. It assumes...
