React Cheat Sheet and Common Int. Questions Flashcards
- Learn the syntax and flow of React - Learn common React Interview Questions
1
Q
What are the 3 phases of lifecycle events in React?
A
0, (Initialization)
- Mounting (adding nodes to the DOM)
- Updating (changes to nodes already in the DOM)
- Unmounting (removing them from the DOM)
2
Q
Describe the steps of the Mounting lifecycle event.
(Hint: There are 4.)
Can you describe the basic flow of each step?
A
STEPS OF MOUNTING LIFECYCLE EVENT:
- constructor()
- getDerivedStateFromProps()
- render()
- componentDidMount()