- Notifications
You must be signed in to change notification settings - Fork849
[오타수정] 2.8 기본 연산자와 수학 #1452#1497
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 ourterms of service andprivacy 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?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
@@ -18,7 +18,7 @@ undefined + 1 = NaN // (6) | |||
``` | |||
1. 피 연산자 중 하나가 문자열인 `"" + 1`에서 `1`은 문자형으로 변환됩니다. 따라서 공백과 문자열 1을 더한, `"" + 1 = "1"`과 같은 효과를 발휘하죠. 그다음 연산 `"1" + 0`에도 같은 규칙이 적용됩니다. | |||
2. 뺄셈 연산자 `-`는 기타 수학 연산자처럼 숫자형만을 인수로 받습니다. 빈 문자열 `""`는 숫자 `0`으로 변환되기 때문에 결과는 `-1`이 됩니다. | |||
2. 뺄셈 연산자 `-`는 기타 수학 연산자처럼 숫자형만을 인수로 받습니다. 빈 문자열 `""`은 숫자 `0`으로 변환되기 때문에 결과는 `-1`이 됩니다. |
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.
""
<--이 기호는 쌍따옴표라고 부르기 때문에 쌍따옴표는
으로 하는게 맞을것 같은데요.
혹시은
으로 바꾸신 이유가 있을까요?
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.
쌍따옴표는
이 더 정확한 것 같습니다. 커밋 수정하였습니다.
리뷰 후 수정 내용도 커밋 하나에 합치기 부탁드릴게요.. :) |
Uh oh!
There was an error while loading.Please reload this page.
Pull Request 체크리스트
TODO
Summary
[오타수정] 2.8 기본 연산자와 수학#1452
띄어쓰기, 피동형 문장 등을 수정하였습니다.