We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
learning-react/13/router-tutorial/src/pages/About.js 에서 Toggle detail버튼을 누르고 mode + 1 버튼을 누르는 경우 mode의 값이 Nan으로 나옵니다 반대로 실행하면 올바른 값이 나옵니다
onIncreaseMode함수의 const nextMode = mode === null ? 1 : parseInt(mode) + 1; 를 아래와 같이 작성하면 정상 작동하는데 수정해서 사용하는게 맞는걸까요 const nextMode = mode === null || "null" ? 1 : parseInt(mode) + 1;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
learning-react/13/router-tutorial/src/pages/About.js 에서
Toggle detail버튼을 누르고 mode + 1 버튼을 누르는 경우
mode의 값이 Nan으로 나옵니다
반대로 실행하면 올바른 값이 나옵니다
onIncreaseMode함수의
const nextMode = mode === null ? 1 : parseInt(mode) + 1; 를 아래와 같이 작성하면 정상 작동하는데 수정해서 사용하는게 맞는걸까요
const nextMode = mode === null || "null" ? 1 : parseInt(mode) + 1;
The text was updated successfully, but these errors were encountered: