#js
Read more stories on Hashnode
Articles with this tag
Because wording matters · Do you know useEffect? useEffect(() => { console.log(value) }, [value]) This effect runs after the first render and...
A nuance on top of how React's hooks flow is usually taught · Down the rabbit hole Give me a component A and I'll: On first render Run A's state lazy...
This The this keyword is a dynamic binding that belongs to the environment record of a function’s execution context and whose main goal is dynamically...
This is just a quick note to link somewhere else, so don't mind me! Its purpose isn't precision nor completion. Functions are objects. They have an...
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,...
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...