728x90 반응형 JavaScript1 ESLint Error: Assignment (=) can be replaced with operator assignment (-=) & Unary operator '--' used 에러 메시지 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; }; 2023. 2. 27. 이전 1 다음 728x90 반응형