Skip to content

pre 태그 안에 ```javascript 코드가 노출됩니다. #3

New issue

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

Open
moonspam opened this issue Jun 20, 2017 · 1 comment
Open

pre 태그 안에 ```javascript 코드가 노출됩니다. #3

moonspam opened this issue Jun 20, 2017 · 1 comment

Comments

@moonspam
Copy link
Contributor

quote 태그의 들여쓰기가 필요합니다.
PS. 번역해주셔서 너무 감사합니다. (- -)(_ _)

현재 페이지

참조(References)

  • 2.1 Use const for all of your references; avoid using var.
  • 2.1 모든 참조는 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;
```

수정 페이지

참조(References)

  • 2.1 Use const for all of your references; avoid using var.

  • 2.1 모든 참조는 const 를 사용하고, var 를 사용하지 마십시오.

    Why? This ensures that you can't reassign your references, which can lead to bugs and difficult to comprehend code.

    왜? 참조를 재할당 할 수 없으므로, 버그로 이어지고 이해하기 어려운 코드가 되는것을 방지합니다.

    // bad
    var a = 1;
    var b = 2;
    
    // good
    const a = 1;
    const b = 2;
@tipjs
Copy link
Owner

tipjs commented Aug 17, 2017

풀리퀘 주시면 머지해 드릴께요

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy