One of my best nodejs devs is currently open to getting hired. Mid level to senior role.
Kindly hit me up if you would want to hire him or collaborate with him on a project.
Please retweet
PWA
- Install on your phone with nice icon
- Get rid of browser's UI
- More control on caching
- Ability to send notifications
- Provide nice fallback for offline state (full offline support is hard for data intensive apps)
All of this while still being Web tech
“I was an ordinary person who studied hard. There are no miracle people. It happens they get interested in this thing and they learn all this stuff, but they’re just people.” -Richard Feynman
Pure Component will do a shallow comparison on both props and state by invoking the shouldComponentUpdate() lifecycle method.
#learnReact#100DaysOfCode#javascript#learnOx
Comments and contributions are welcome.
This helps in performance optimisations.
In class components, You can achieve this by making your component extend React.PureComponent() instead of React.Component().
#learnReact#javascript#reactjs#frontendDevelopment
Pure Components are the components that render the same output for the same state and props. You can achieve this in the function component with React.Memo().
This API prevents unnecessary re-renders by comparing the previous props and new props using shallow comparisons.
2. Pure function: A pure function on the other hand changes nothing, and continues to provide a (return) result each time it is called.
This is what applies to Pure Components in #reactjs.
1. Idempotence: A function is idempotence if and only if the result of applying it twice is the same as the result of applying it once.
For instance, sorting a list is idempotent, as sorting it a second time has no effect.
#CodeNewbies#CodeNewbie#100daysofcoding
What are the major Features of React?
#Reactjs has evolved over the years to have a lot of features. In this post, we discuss some of the major features of React.
#learnReact#100DaysOfCode#javascript#learnOx
Comments and contributions are welcome.
So What is React ?
#Reactjs is an open-source #javascript framework that aids developers in building web interfaces. React handles the view layer for most web and mobile applications.
#learnReact#100DaysOfCode#learnOx
What is a Pure Component in #reactjs?
To understand what a pure component is we need to refresh our knowledge of some functional programming concepts.
1. Idempotence.
#learnReact#100DaysOfCode#javascript#learnOx
Comments and contributions are welcome.