본문 바로가기
ERROR

ESLint Error: Assignment (=) can be replaced with operator assignment (-=) & Unary operator '--' used

by 로맨틱스터디 2023. 2. 27.
728x90
반응형

에러 메시지

Assignment (=) can be replaced with operator assignment (-=).
Unary operator '--' used

 

코드

간단한 숫자 카운터 만드는 중 증감식에서 발생

const handleAdd = () => {
  count = count + 1;
};

const handleMinus = () => {
  count--;
};

 

 

해결

const handleAdd = () => {
  count += 1;
};

const handleMinus = () => {
  count -= 1;
};

 

728x90
반응형