Rubber-duck

November 2, 2024
Debugging: The Art of Talking to Yourself in Code

Debugging is like being the detective, suspect, and jury in your own crime drama. The code is guilty of breaking,…

October 9, 2024
Why My Code Works… Until It Doesn’t

There’s no better feeling than seeing your code work flawlessly after hours of frustration. It’s like hitting the jackpot on…

document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const targetId = this.getAttribute("href"); window.location.href = `${window.location.origin}/${targetId}`; }); });