Recent Posts

[React.js] UseMemo Hook

less than 1 minute read

This sample shows usage of useMemo Hook. the getAvg function will called everytime when onChange triggers on the input. useMemo will only recompute the memor...

[React.js] UseEffect Hook

less than 1 minute read

Example component shows useEffect Hook. Provice a second argument will give you which value update.

[JS] Sort objects in an array

less than 1 minute read

This is how to sort an array containing objects. If you want to performance check, remove comments on console.times.