Добрый день.
Скрипт не меняет атрибут у элемента, никак не могу понять в чем ошибка
const sandwich = document.querySelector('.js-sandwich');
function sandwichToggle() {
this.classList.toggle('active');
let ariaExpanded = this.getAttribute('aria-expanded');
if (ariaExpanded) {
this.setAttribute('aria-expanded', 'false');
} else {
this.setAttribute('aria-expanded', 'true');
}
}
sandwich.addEventListener('click', sandwichToggle);
Сам элемент
.sandwich.js-sandwich(role="button" aria-haspopup="true" aria-expanded="false" tabindex="0")