#javascript
Read more stories on Hashnode
Articles with this tag
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...