My reading journal for Code Fellows
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?
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.
...oldArray to a new array.Give an example of using the spread operator to combine two objects into one.
How to pass Functions Between Components
In the video, what is the first step that the developer does to pass functions between components?
increment and pass in person objectIn your own words, what does the increment function do?
How can you pass a method from a parent component into a child component?
this.incrementHow does the child component invoke a method that was passed to it from a parent component?
React Tutorial through ‘Declaring a Winner’