#javascript
Read more stories on Hashnode
Articles with this tag
I read about lazy init lately when enrolled in FrontendMaster course from Brian Holt. It is said that lazy init is used when you want to perform some...
React encourages people to use special prop children for the container which has unknown children components. For example, Sidebar or Dialog. And...
There are 2 common ways to solve Props drilling in React: use ContextAPI/Redux and use React Composition. In this article i will go through the...