Life Cycle in React JS
Why Coding Splitting In React Apps
DOM VS VIRTUAL DOM VS SHADOW DOM
Modules in JavaScript
Life Cycle in React JS
In React Everything has a lifecycle that can be observed or controlled during three phases
Mounting
Updating
Unmounting
Mounting
constructor
getDerivedStateFromStaticProps
render
componentDidMount
Updating
shouldComponentUpdate
componentDidUpdate
getSnapShotBeforeUpdate
render
Unmount
componentWillUnmount
Apart from this, we have
componentDidCatch(To Catch Error)