React Flashcards

1
Q

What is React?

A

a javascript library for building user interfaces

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

What is a React element?

A

an object that describes an element

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

How do you mount a React element to the DOM?

A

ReactDOM.render()

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

What is JSX?

A

syntax extension to JavaScript

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

Why must the React object be imported when authoring JSX in a module?

A

Since JSX compiles into calls to React.createElement, the React library must also always be in scope from your JSX code

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

How can you make Webpack and Babel work together to convert JSX into valid JavaScript?

A

npm install @babel/plugin-transform-react-jsx

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

What is a React component?

A

a JavaScript class or function that returns a React element

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

How do you define a function component in React?

A
function functionName( [props] ) {
return [prop]
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you mount a component to the DOM?

A

ReactDOM.render( element, parent )

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

What are props in React?

A

When React sees an element representing a user-defined component, it passes JSX attributes and children to this component as a single object. We call this object “props”.

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

How do you write JavaScript expressions in JSX?

A

{ }

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

How do you create “class” component in React?

A

define a class that extends Component and has a render method

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

How do you access props in a class component?

A

this.props

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

What is the purpose of state in React?

A

to represent information about the component’s current situation to determine behavior

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

How to you pass an event handler to a React element?

A

assign it to the elements prop using { }

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

What are controlled components?

A

A controlled component is a component that renders form elements and controls them by keeping the form data in the component’s state

17
Q

What two props must you pass to an input for it to be “controlled”?

A

value and onChange

18
Q

What Array method is commonly used to create a list of React elements?

A

map

19
Q

What is the best value to use as a “key” prop when rendering lists?

A

Unique IDs

20
Q

When does React call a component’s componentDidMount method?

A

right after the component has been mounted on the tree

21
Q

Name three React.Component lifecycle methods.

A

componentDidMount(), componentDidUpdate(), componentWillUnmount()

22
Q

How do you pass data to a child component?

A

as a prop