document.querySelectorAll('.tab-button')[0].addEventListener('click', function(){
document.querySelectorAll('.tab-button').classList.remove('orange');
document.querySelectorAll('.tab-button')[0].classList.add('orange');
document.querySelectorAll('.show').classList.remove('show');
document.querySelectorAll('.show')[0].classList.add('.show');
});
자바스크립트코드로 하는데 실행이 안돼요...
어느부분이 잘못된건가요?