aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/guide/introduction/index.html
diff options
context:
space:
mode:
authoralattalatta <urty5656@gmail.com>2021-12-16 02:01:24 +0900
committerKyle <mkitigy@gmail.com>2021-12-27 07:54:38 +0900
commit06bc06d023186d8d36f90c88e76a9e4c03446534 (patch)
treee50d797ff0a10a0b6153f77630a459776f70730a /files/ko/web/javascript/guide/introduction/index.html
parentf2fe09baf63c96c009dd7348a34d2032b993433e (diff)
downloadtranslated-content-06bc06d023186d8d36f90c88e76a9e4c03446534.tar.gz
translated-content-06bc06d023186d8d36f90c88e76a9e4c03446534.tar.bz2
translated-content-06bc06d023186d8d36f90c88e76a9e4c03446534.zip
Remove notranslate from JS guides
Diffstat (limited to 'files/ko/web/javascript/guide/introduction/index.html')
-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) {