Rob Watkins
1 min readMar 30, 2020

--

BlogPost_402

Austin Coding Academy

Discuss in words something you learned in class today or this week. State. All about state. In the second project I really started to get the hang of where you should put state and how to pass it around as props.

What is the difference between state and props? State is mutable data stored in certain components while props are immutable pieces of data passed between components.

What is ReactDOM and what is the difference between ReactDOM and React? ReactDOM is the react’s DOM.

What is React.createClass? React.createClass is a method for making a class.

Which (if there is) node library method could you use to solve the algorithm problem you solved last night in your pre-homework. Lodash is a good one, I think.

Which (if there is) node library method could you use to solve the algorithm problem you solved in class tonight? “”.

Explain event delegation in JavaScript and why it is useful. Event delegation is using user input to alter state. It’s useful because you gotta have that user input.

Which new JavaScript / browser features are you most excited about and why? All of them because new things are exciting.

--

--