aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/guide/introduction
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/guide/introduction')
-rw-r--r--files/ko/web/javascript/guide/introduction/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/web/javascript/guide/introduction/index.html b/files/ko/web/javascript/guide/introduction/index.html
index 537817b5b5..e7ae8ee946 100644
--- a/files/ko/web/javascript/guide/introduction/index.html
+++ b/files/ko/web/javascript/guide/introduction/index.html
@@ -118,7 +118,7 @@ original_slug: Web/JavaScript/Guide/소개
<p>이 콘솔은 eval과 완전히 동일하게 동작합니다:마지막 입력된 표현식이 반환되죠. 간단하게 생각해서, 콘솔에 뭔가 입력할 때마다 eval로 감싼 console.log로 둘러싸인 형태라고 보시면 됩니다.</p>
-<pre class="notranslate">function greetMe(yourName) { alert('Hello ' + yourName); } <code>console.log(eval('3 + 5'));</code></pre>
+<pre>function greetMe(yourName) { alert('Hello ' + yourName); } <code>console.log(eval('3 + 5'));</code></pre>
<h3 id="Scratchpad">Scratchpad</h3>
@@ -132,7 +132,7 @@ original_slug: Web/JavaScript/Guide/소개
<p>JavaScript 작성을 시작하기 위해서, Scratchpad를 열고 첫 JavaScript 코드 "Hello World" 를 작성하세요.</p>
-<pre class="notranslate"><code>(function(){
+<pre><code>(function(){
"use strict";
/* Start of your code */
function greetMe(yourName) {