useEffect() can combine componentDidMount, componentDidUpdate, and componentWillUnmount but is tricky.
useEffect()
componentDidMount
componentDidUpdate
componentWillUnmount
You can decipher most of what I have to discuss here from official docs for hooks. It’s easier…
Arrow functions or Lambdas, were introduced in ES 6. Apart from its elegance in minimal syntax, most notable functional difference is scoping of this inside an arrow function
this
In regular function expressions, the this…
Typical Angular application renders and interacts with set of Container (Smart / Stateful) components, containing one or more re-usable Presentation (Dumb / Stateless) components.
Kotlin allows us to extend a class with new functionality at compile-time without having to inherit from any parent class using a extension functions.