React Native

React Hooks

useState, useEffect, useContext, useRef, useCallback, useMemo, custom hooks

20 perguntas de entrevista·
Junior
1

Which function allows declaring a state variable in a React functional component?

Resposta

useState is the fundamental hook for managing local state in functional components. It returns an array containing the current state value and a function to update it. Unlike class components that use this.state, functional components use useState for each independent state variable.

2

What is the correct syntax to use useState with an initial value of 0?

Resposta

The useState syntax uses array destructuring. The first element is the current state value, the second is the setter function to update it. The naming convention is to prefix the setter with 'set' followed by the capitalized variable name, like setCount for the count variable.

3

When does the useEffect callback without a dependency array execute?

Resposta

Without a dependency array, useEffect runs after every render of the component, including the first render and all subsequent re-renders. This can cause performance issues as the code runs on every update. To limit executions, provide a dependency array specifying which values to watch.

4

How to run a useEffect only on component mount?

5

What is the purpose of the function returned by a useEffect?

+17 perguntas de entrevista

Domine React Native para sua proxima entrevista

Acesse todas as perguntas, flashcards, testes tecnicos, exercicios de code review e simuladores de entrevista.

Comece gratis