diff options
author | logic-finder <83723320+logic-finder@users.noreply.github.com> | 2021-06-10 09:55:19 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 09:55:19 +0900 |
commit | b17a16a688493971065f88df63ec47402fe508df (patch) | |
tree | fa312a8085f9e6a408e8ccd30004a94bdbd9e3b4 /files/ko | |
parent | 77835841639ac5dfa31fc45395e3c3bf0caba0c1 (diff) | |
download | translated-content-b17a16a688493971065f88df63ec47402fe508df.tar.gz translated-content-b17a16a688493971065f88df63ec47402fe508df.tar.bz2 translated-content-b17a16a688493971065f88df63ec47402fe508df.zip |
[ko] Add 'test your skills! - variables' section (#948)
* Add 'test your skills! - variables' section.
* commit suggestion about translational tone problem.
Diffstat (limited to 'files/ko')
-rw-r--r-- | files/ko/learn/javascript/first_steps/variables/index.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/files/ko/learn/javascript/first_steps/variables/index.html b/files/ko/learn/javascript/first_steps/variables/index.html index 7d4b2adf4e..d10eee4a52 100644 --- a/files/ko/learn/javascript/first_steps/variables/index.html +++ b/files/ko/learn/javascript/first_steps/variables/index.html @@ -353,6 +353,10 @@ typeof(myNumber)</pre> <p>위의 네 줄의 코드를 하나씩 콘솔에 입력하여 결과가 무엇인지 확인해 보세요.(주석은 입력하지 마세요.) 여기에서 <code>typeof()</code> 라는 특수 함수를 사용하고 있음을 알 수 있습니다. - 이 함수는 입력한 변수의 데이터 유형을 반환합니다. 위의 코드에서 처음으로 호출될 때, <code>myNumber</code> 변수에는 <code>'500'</code> 라는 문자열이 포함되어 있으므로 <code>string</code> 을 반환해야 합니다. 두 번째는 어떤 값을 반환하는지 확인해 보세요.</p> +<h2 id="Test_your_skills!">당신의 실력을 시험해 보세요!</h2> + +<p>이 문서를 끝까지 읽으셨지만, 중요한 것들을 여전히 기억하고 계신가요? 다음 문서를 읽기 전에 이 문서의 내용을 잘 학습하고 이해하셨는지 확인하실 수 있습니다 — <a href="/ko/docs/Learn/JavaScript/First_steps/Test_your_skills:_variables">당신의 실력을 시험해 보세요: 변수(variables)</a>.</p> + <h2 id="요약">요약</h2> <p>지금까지 JavaScript의 변수란 무엇이며, 어떻게 생성하는지 알아보았습니다. 다음에는 JavaScript에서 숫자에 관해 자세히 살펴보고 기본 계산하는 방법을 알아보겠습니다.</p> |