8000
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
quote 태그의 들여쓰기가 필요합니다. PS. 번역해주셔서 너무 감사합니다. (- -)(_ _)
const
var
Why? This ensures that you can't reassign your references, which can lead to bugs and difficult to comprehend code.
왜? 참조를 재할당 할 수 없으므로, 버그로 이어지고 이해하기 어려운 코드가 되는것을 방지합니다.
```javascript // bad var a = 1; var b = 2; // good const a = 1; const b = 2; ```
2.1 Use const for all of your references; avoid using var.
2.1 모든 참조는 const 를 사용하고, var 를 사용하지 마십시오.
// bad var a = 1; var b = 2; // good const a = 1; const b = 2;
The text was updated successfully, but these errors were encountered:
풀리퀘 주시면 머지해 드릴께요
Sorry, something went wrong.
No branches or pull requests
quote 태그의 들여쓰기가 필요합니다.
PS. 번역해주셔서 너무 감사합니다. (- -)(_ _)
현재 페이지
참조(References)
const
for all of your references; avoid usingvar
.const
를 사용하고,var
를 사용하지 마십시오.수정 페이지
참조(References)
2.1 Use
const
for all of your references; avoid usingvar
.2.1 모든 참조는
const
를 사용하고,var
를 사용하지 마십시오.The text was updated successfully, but these errors were encountered: