diff options
Diffstat (limited to 'files')
-rw-r--r-- | files/ko/glossary/primitive/index.html | 2 | ||||
-rw-r--r-- | files/ko/web/javascript/guide/grammar_and_types/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/glossary/primitive/index.html b/files/ko/glossary/primitive/index.html index 8f12b18da8..15d919722e 100644 --- a/files/ko/glossary/primitive/index.html +++ b/files/ko/glossary/primitive/index.html @@ -19,7 +19,7 @@ translation_of: Glossary/Primitive <h3 id="JavaScript">JavaScript</h3> -<pre class="brush: js line-numbers language-js notranslate" dir="rtl">// 문자열 메서드는 문자열을 변형하지 않음 +<pre class="brush: js">// 문자열 메서드는 문자열을 변형하지 않음 var bar = "baz"; console.log(bar); // baz bar.toUpperCase(); diff --git a/files/ko/web/javascript/guide/grammar_and_types/index.html b/files/ko/web/javascript/guide/grammar_and_types/index.html index 54d51091a9..d8d2287599 100644 --- a/files/ko/web/javascript/guide/grammar_and_types/index.html +++ b/files/ko/web/javascript/guide/grammar_and_types/index.html @@ -99,7 +99,7 @@ console.log("c 값은 " + c); // ReferenceError 예외 던짐 let x; console.log('x 값은 ' + x); // x 값은 undefined -console.oog('y 값은 ' + y); // ReferenceError 예외 던짐 +console.log('y 값은 ' + y); // ReferenceError 예외 던짐 let y; </pre> |