Learn how to correctly implement auto-logout logic in React · TL;DR const logoutTimerIdRef = useRef(null); useEffect(() => { const autoLogout = () =>...
Understanding the addition operator in JavaScript, with all it's nuances · One of the uses of the plus (+) symbol in JavaScript is to perform addition of...
As a Frontend Developer, it is sometimes humbling to know just how much you don't know about the basic building blocks of the web. The amount of tools...
There are two next-specific ways you can navigate between pages in a Nextjs application (on the client side) Using the component from next/link...