React Flashcards

1
Q

What is JSX?

A

Templating language that lets you write HTML-like UI code with JavaScript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the virtual DOM?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are useCallback and useMemo used for?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is useRef used for?

A

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}/>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is Context used for?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly