increase. = () => {

const current = parseInt(number.innerText, 10);

number.innerText = current + 1;

};


decrease. = () => {

const current = parseInt(number.innerText, 10);

number.innerText = current - 1;

};

const 계속 선언 되는거 아님?