From 06bc06d023186d8d36f90c88e76a9e4c03446534 Mon Sep 17 00:00:00 2001 From: alattalatta Date: Thu, 16 Dec 2021 02:01:24 +0900 Subject: Remove notranslate from JS guides --- files/ko/web/javascript/guide/introduction/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'files/ko/web/javascript/guide/introduction/index.html') 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/소개

이 콘솔은 eval과 완전히 동일하게 동작합니다:마지막 입력된 표현식이 반환되죠. 간단하게 생각해서, 콘솔에 뭔가 입력할 때마다 eval로 감싼 console.log로 둘러싸인 형태라고 보시면 됩니다.

-
function greetMe(yourName) { alert('Hello ' + yourName); } console.log(eval('3 + 5'));
+
function greetMe(yourName) { alert('Hello ' + yourName); } console.log(eval('3 + 5'));

Scratchpad

@@ -132,7 +132,7 @@ original_slug: Web/JavaScript/Guide/소개

JavaScript 작성을 시작하기 위해서, Scratchpad를 열고 첫 JavaScript 코드 "Hello World" 를 작성하세요.

-
(function(){
+
(function(){
   "use strict";
   /* Start of your code */
   function greetMe(yourName) {
-- 
cgit v1.2.3-54-g00ecf