aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/ko/learn/javascript/first_steps/what_is_javascript/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/learn/javascript/first_steps/what_is_javascript/index.html b/files/ko/learn/javascript/first_steps/what_is_javascript/index.html
index c980bbf699..614ab821e5 100644
--- a/files/ko/learn/javascript/first_steps/what_is_javascript/index.html
+++ b/files/ko/learn/javascript/first_steps/what_is_javascript/index.html
@@ -217,7 +217,7 @@ function updateName() {
<p>그러고 아래의 자바스크립트 코드를 &lt;script&gt;&lt;/script&gt;사이에 넣음으로서 페이지 상에서 동작이 가능하게끔 할 수 있습니다.( 위 코드에서 "// JavaScript goes here" 부분에 아래의 코드를 추가하면 됩니다.)</p>
-<pre class="brush: js notranslate" dir="rtl"><code>document.addEventListener("DOMContentLoaded", function() {
+<pre class="brush: js notranslate"><code>document.addEventListener("DOMContentLoaded", function() {
function createParagraph() {
let para = document.createElement('p');
para.textContent = 'You clicked the button!';