Readings

My reading journal for Code Fellows

Readings

React Docs-Lists and Keys

What does .map() return?

If I want to loop through an array and display each value in JSX, how do I do that in React?

Each list item needs a unique ____.

What is the purpose of a key?

The Spread Operator

What is the spread operator?

List 4 things that the spread operator can do.

Give an example of using the spread operator to combine two arrays.

Give an example of using the spread operator to add a new item to an array.

Give an example of using the spread operator to combine two objects into one.

Videos

How to pass Functions Between Components

In the video, what is the first step that the developer does to pass functions between components?

In your own words, what does the increment function do?

How can you pass a method from a parent component into a child component?

How does the child component invoke a method that was passed to it from a parent component?

Bookmark and Review

React Tutorial through ‘Declaring a Winner’

React Docs-Lifting State Up

Things I want to know more about