aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/operators/class/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/reference/operators/class/index.html')
-rw-r--r--files/ko/web/javascript/reference/operators/class/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ko/web/javascript/reference/operators/class/index.html b/files/ko/web/javascript/reference/operators/class/index.html
index 6ac133bf39..05e21fb2cb 100644
--- a/files/ko/web/javascript/reference/operators/class/index.html
+++ b/files/ko/web/javascript/reference/operators/class/index.html
@@ -19,7 +19,7 @@ translation_of: Web/JavaScript/Reference/Operators/class
<h2 id="구문">구문</h2>
-<pre class="syntaxbox notranslate">var MyClass = class <em>[className]</em> [extends] {
+<pre class="syntaxbox ">var MyClass = class <em>[className]</em> [extends] {
  // class body
};</pre>
@@ -37,7 +37,7 @@ translation_of: Web/JavaScript/Reference/Operators/class
<p>이게 바로 변수 "Foo"를 사용하여 참조할 수 있는 간단한 익명 class 식입니다.</p>
-<pre class="brush: js notranslate">var Foo = class {
+<pre class="brush: js ">var Foo = class {
constructor() {}
bar() {
return "Hello World!";
@@ -53,7 +53,7 @@ Foo.name; // ""
<p>당신이 클래스 몸통 내에서 현재 클래스를 참조하고 싶다면, 유명 class 식을 만들 수 있습니다. 이 이름은 오직 class 식 자체 범위에서만 볼 수 있습니다.</p>
-<pre class="brush: js notranslate">var Foo = class NamedFoo {
+<pre class="brush: js ">var Foo = class NamedFoo {
constructor() {}
whoIsThere() {
return NamedFoo.name;