useMemo hook in ReactJS | Advantages and Cost
Feb 24, 2022 · 2 min read · useMemo is built in hook in reactjs to memoize expensive operations in ReactJS. There are many operations leads to re-render the component eg. state updates, props updates. Re-rendering can cause some of the functions to execute again. If synchronus...
AAyush commented

