-
Notifications
You must be signed in to change notification settings - Fork 845
[번역]Part1_2.9 '비교 연산자' 미번역된 부분 번역 진행(#779) #816
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수정 부탁드려요
@@ -9,9 +9,9 @@ | |||
- 같음(동등): `a == b`. 등호 `=`가 두 개 연달아 오는 것에 유의하세요. `a = b`와 같이 등호가 하나일 때는 할당을 의미합니다. | |||
- 같지 않음(부등): 같지 않음을 나타내는 수학 기호 <code>≠</code>는 자바스크립트에선 <code>a != b</code>로 나타냅니다. 할당연산자 `=` 앞에 느낌표 `!`를 붙여서 표시합니다. | |||
|
|||
In this article we'll learn more about different types of comparisons, how JavaScript makes them, including important peculiarities. | |||
이번 주제에서는 다양한 유형의 비교연산자와 중요한 특성을 자바스크립트가 어떻게 처리하는지에 대하여 배울 것입니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이번 주제에서는 다양한 유형의 비교연산자와 중요한 특성을 자바스크립트가 어떻게 처리하는지에 대하여 배울 것입니다. | |
이번 주제에서는 다양한 유형의 비교연산자와 연산자별 문법 및 주요 특징에 대해 알아보겠습니다. |
|
||
At the end you'll find a good recipe to avoid "javascript quirks"-related issues. | ||
최종적으로 '자바스크립트 쿼크(quirks)'와 관련된 이슈를 방지 할 수 있는 좋은 방법을 찾을 것입니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
최종적으로 '자바스크립트 쿼크(quirks)'와 관련된 이슈를 방지 할 수 있는 좋은 방법을 찾을 것입니다. | |
마지막엔 자바스크립트 비교 연산자에서만 일어나는 '별난 상황'을 어떻게 방지할 수 있는지 알아보겠습니다. |
Please make the requested changes. After it, add a comment "/done". |
Pull Request 체크리스트
TODO