Displaying the following:
Error: Cannot read property 'add' of undefined at HTMLAnchorElement.linkAction
const navigationLinks = document.querySelectorAll('.nav__link')
function handleLinkAction(){
// Activate link
navLinks.forEach(link => link.classList.remove('active'))
this.classlist.add('active')
// Hide mobile menu
const mobileMenu = document.getElementById('nav-menu')
mobileMenu.classList.remove('show')
}