React Flashcards
What is JSX?
Templating language that lets you write HTML-like UI code with JavaScript
What is the virtual DOM?
Intermediary layer that tracks changes to the actual dom and let’s React only rerender the parts taht have changed rather than the whole page.
What are useCallback and useMemo used for?
useCallback is for memoizing functions, and useMemo is for memoizing any value such as an array.
You should only use either hook when you either need to:
1. Cache heavy computations
2. Check referential equality, ex. dependency arrays for other hooks like useEffect
What is useRef used for?
Can be used to store a value that doesn’t cause re-renders wehn changed.
It is usually used to keep reference to a specific component in the view tree, so that you can access it later.
const ref = useRef()
<Button ref={ref}/>
What is Context used for?
Storing values that will be widely needed by many or most sub-components. Allows you to avoid prop drilling. Can be replaced by other state management tools like redux or recoil
Often used themes or light/dark mode