From 87990b6bf559dd76dd65cefc2b112daacad9962a Mon Sep 17 00:00:00 2001 From: iamgamja Date: Wed, 9 Feb 2022 12:48:58 +0900 Subject: rename --- files/ko/web/api/console/assert/index.html | 99 ----------------------- files/ko/web/api/console/assert/index.md | 99 +++++++++++++++++++++++ files/ko/web/api/console/clear/index.html | 43 ---------- files/ko/web/api/console/clear/index.md | 43 ++++++++++ files/ko/web/api/console/count/index.html | 102 ----------------------- files/ko/web/api/console/count/index.md | 102 +++++++++++++++++++++++ files/ko/web/api/console/countreset/index.html | 108 ------------------------- files/ko/web/api/console/countreset/index.md | 108 +++++++++++++++++++++++++ files/ko/web/api/console/debug/index.html | 59 -------------- files/ko/web/api/console/debug/index.md | 59 ++++++++++++++ files/ko/web/api/console/error/index.html | 77 ------------------ files/ko/web/api/console/error/index.md | 77 ++++++++++++++++++ files/ko/web/api/console/group/index.html | 83 ------------------- files/ko/web/api/console/group/index.md | 83 +++++++++++++++++++ files/ko/web/api/console/log/index.html | 94 --------------------- files/ko/web/api/console/log/index.md | 94 +++++++++++++++++++++ files/ko/web/api/console/time/index.html | 56 ------------- files/ko/web/api/console/time/index.md | 56 +++++++++++++ files/ko/web/api/console/timeend/index.html | 68 ---------------- files/ko/web/api/console/timeend/index.md | 68 ++++++++++++++++ files/ko/web/api/console/trace/index.html | 77 ------------------ files/ko/web/api/console/trace/index.md | 77 ++++++++++++++++++ files/ko/web/api/console/warn/index.html | 70 ---------------- files/ko/web/api/console/warn/index.md | 70 ++++++++++++++++ 24 files changed, 936 insertions(+), 936 deletions(-) delete mode 100644 files/ko/web/api/console/assert/index.html create mode 100644 files/ko/web/api/console/assert/index.md delete mode 100644 files/ko/web/api/console/clear/index.html create mode 100644 files/ko/web/api/console/clear/index.md delete mode 100644 files/ko/web/api/console/count/index.html create mode 100644 files/ko/web/api/console/count/index.md delete mode 100644 files/ko/web/api/console/countreset/index.html create mode 100644 files/ko/web/api/console/countreset/index.md delete mode 100644 files/ko/web/api/console/debug/index.html create mode 100644 files/ko/web/api/console/debug/index.md delete mode 100644 files/ko/web/api/console/error/index.html create mode 100644 files/ko/web/api/console/error/index.md delete mode 100644 files/ko/web/api/console/group/index.html create mode 100644 files/ko/web/api/console/group/index.md delete mode 100644 files/ko/web/api/console/log/index.html create mode 100644 files/ko/web/api/console/log/index.md delete mode 100644 files/ko/web/api/console/time/index.html create mode 100644 files/ko/web/api/console/time/index.md delete mode 100644 files/ko/web/api/console/timeend/index.html create mode 100644 files/ko/web/api/console/timeend/index.md delete mode 100644 files/ko/web/api/console/trace/index.html create mode 100644 files/ko/web/api/console/trace/index.md delete mode 100644 files/ko/web/api/console/warn/index.html create mode 100644 files/ko/web/api/console/warn/index.md diff --git a/files/ko/web/api/console/assert/index.html b/files/ko/web/api/console/assert/index.html deleted file mode 100644 index 3ad2aafa8e..0000000000 --- a/files/ko/web/api/console/assert/index.html +++ /dev/null @@ -1,99 +0,0 @@ ---- -title: console.assert() -slug: Web/API/Console/assert -tags: - - API - - DOM - - Method - - Reference - - console -translation_of: Web/API/console/assert ---- -
{{APIRef("Console API")}}
- -

console.assert() 메서드는 주어진 가정이 거짓인 경우 콘솔에 오류 메시지를 출력합니다. 참인 경우, 아무것도 하지 않습니다.

- -

{{AvailableInWorkers}}

- -

구문

- -
console.assert(assertion, obj1 [, obj2, ..., objN]);
-console.assert(assertion, msg [, subst1, ..., substN]); // c-like message formatting
-
- -

Parameters

- -
-
assertion
-
아무 불리언 표현식. 거짓인 경우, 메시지를 콘솔에 출력합니다.
-
obj1 ... objN
-
출력에 사용할 JavaScript 객체. 각각의 문자열 표현을 순서대로 출력합니다.
-
msg
-
0개 이상의 치환 문자열을 포함하는 JavaScript 문자열.
-
subst1 ... substN
-
msg 매개변수의 치환 문자열에 대입할 JavaScript 객체.
-
- -

예제

- -

다음 예제는 객체와 가정을 함께 사용하는 법을 보입니다.

- -
const errorMsg = 'the # is not even';
-for (let number = 2; number <= 5; number += 1) {
-    console.log('the # is ' + number);
-    console.assert(number % 2 === 0, {number: number, errorMsg: errorMsg});
-    // or, using ES2015 object property shorthand:
-    // console.assert(number % 2 === 0, {number, errorMsg});
-}
-// output:
-// the # is 2
-// the # is 3
-// Assertion failed: {number: 3, errorMsg: "the # is not even"}
-// the # is 4
-// the # is 5
-// Assertion failed: {number: 5, errorMsg: "the # is not even"}
-
- -

참고로, {{domxref("console.log()")}}의 치환 문자열을 거의 모든 브라우저에서 정상 동작하지만...

- -
console.log('the word is %s', 'foo');
-// output: the word is foo
-
- -

console.assert()의 치환 문자열은 일부 브라우저에서 동작하지 않습니다.

- -
console.assert(false, 'the word is %s', 'foo');
-// correct output in Node.js and some browsers
-//     (e.g. Firefox v60.0.2):
-// Assertion failed: the word is foo
-// incorrect output in some browsers
-//     (e.g. Chrome v67.0.3396.87):
-// Assertion failed: the word is %s foo
-
- -

{{domxref("console")}} 문서의 콘솔에 텍스트 출력하기 항목도 참고하세요.

- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#assert", "console.assert()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성

- - - -

{{Compat("api.Console.assert")}}

diff --git a/files/ko/web/api/console/assert/index.md b/files/ko/web/api/console/assert/index.md new file mode 100644 index 0000000000..3ad2aafa8e --- /dev/null +++ b/files/ko/web/api/console/assert/index.md @@ -0,0 +1,99 @@ +--- +title: console.assert() +slug: Web/API/Console/assert +tags: + - API + - DOM + - Method + - Reference + - console +translation_of: Web/API/console/assert +--- +
{{APIRef("Console API")}}
+ +

console.assert() 메서드는 주어진 가정이 거짓인 경우 콘솔에 오류 메시지를 출력합니다. 참인 경우, 아무것도 하지 않습니다.

+ +

{{AvailableInWorkers}}

+ +

구문

+ +
console.assert(assertion, obj1 [, obj2, ..., objN]);
+console.assert(assertion, msg [, subst1, ..., substN]); // c-like message formatting
+
+ +

Parameters

+ +
+
assertion
+
아무 불리언 표현식. 거짓인 경우, 메시지를 콘솔에 출력합니다.
+
obj1 ... objN
+
출력에 사용할 JavaScript 객체. 각각의 문자열 표현을 순서대로 출력합니다.
+
msg
+
0개 이상의 치환 문자열을 포함하는 JavaScript 문자열.
+
subst1 ... substN
+
msg 매개변수의 치환 문자열에 대입할 JavaScript 객체.
+
+ +

예제

+ +

다음 예제는 객체와 가정을 함께 사용하는 법을 보입니다.

+ +
const errorMsg = 'the # is not even';
+for (let number = 2; number <= 5; number += 1) {
+    console.log('the # is ' + number);
+    console.assert(number % 2 === 0, {number: number, errorMsg: errorMsg});
+    // or, using ES2015 object property shorthand:
+    // console.assert(number % 2 === 0, {number, errorMsg});
+}
+// output:
+// the # is 2
+// the # is 3
+// Assertion failed: {number: 3, errorMsg: "the # is not even"}
+// the # is 4
+// the # is 5
+// Assertion failed: {number: 5, errorMsg: "the # is not even"}
+
+ +

참고로, {{domxref("console.log()")}}의 치환 문자열을 거의 모든 브라우저에서 정상 동작하지만...

+ +
console.log('the word is %s', 'foo');
+// output: the word is foo
+
+ +

console.assert()의 치환 문자열은 일부 브라우저에서 동작하지 않습니다.

+ +
console.assert(false, 'the word is %s', 'foo');
+// correct output in Node.js and some browsers
+//     (e.g. Firefox v60.0.2):
+// Assertion failed: the word is foo
+// incorrect output in some browsers
+//     (e.g. Chrome v67.0.3396.87):
+// Assertion failed: the word is %s foo
+
+ +

{{domxref("console")}} 문서의 콘솔에 텍스트 출력하기 항목도 참고하세요.

+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#assert", "console.assert()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.assert")}}

diff --git a/files/ko/web/api/console/clear/index.html b/files/ko/web/api/console/clear/index.html deleted file mode 100644 index 540ce73ee5..0000000000 --- a/files/ko/web/api/console/clear/index.html +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: console.clear() -slug: Web/API/Console/clear -tags: - - API - - Method - - Reference - - console -translation_of: Web/API/Console/clear ---- -
{{APIRef("Console API")}}
- -

console.clear() 메서드는 현재 환경에서 가능한 경우, 콘솔에 기록된 메시지를 모두 지웁니다.

- -

구문

- -
console.clear();
-
- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#clear", "console.clear()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성

- - - -

{{Compat("api.Console.clear")}}

diff --git a/files/ko/web/api/console/clear/index.md b/files/ko/web/api/console/clear/index.md new file mode 100644 index 0000000000..540ce73ee5 --- /dev/null +++ b/files/ko/web/api/console/clear/index.md @@ -0,0 +1,43 @@ +--- +title: console.clear() +slug: Web/API/Console/clear +tags: + - API + - Method + - Reference + - console +translation_of: Web/API/Console/clear +--- +
{{APIRef("Console API")}}
+ +

console.clear() 메서드는 현재 환경에서 가능한 경우, 콘솔에 기록된 메시지를 모두 지웁니다.

+ +

구문

+ +
console.clear();
+
+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#clear", "console.clear()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.clear")}}

diff --git a/files/ko/web/api/console/count/index.html b/files/ko/web/api/console/count/index.html deleted file mode 100644 index 0040da4c11..0000000000 --- a/files/ko/web/api/console/count/index.html +++ /dev/null @@ -1,102 +0,0 @@ ---- -title: console.count() -slug: Web/API/Console/count -tags: - - API - - DOM - - Method - - Reference -translation_of: Web/API/Console/count ---- -
{{APIRef("Console API")}}
- -

console.count() 메서드는 특정 count() 호출의 횟수를 세어 출력합니다.

- -

{{AvailableInWorkers}}

- -

구문

- -
console.count([label]);
- -

매개변수

- -
-
label {{Optional_Inline}}
-
{{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 count() 호출의 수를 출력합니다. 누락한 경우 "default"를 지정한 것처럼 동작합니다.
-
- -

예제

- -
let user = "";
-
-function greet() {
-  console.count();
-  return "hi " + user;
-}
-
-user = "bob";
-greet();
-user = "alice";
-greet();
-greet();
-console.count();
- -

위 코드의 출력 결과는 다음과 같은 형태입니다.

- -
"default: 1"
-"default: 2"
-"default: 3"
-"default: 4"
- -

레이블을 명시하지 않았기 때문에 default로 나타납니다.

- -

첫 번째 count()의 매개변수에는 user 변수를 제공하고, 두 번째에는 문자열 "alice"를 제공할 경우...

- -
let user = "";
-
-function greet() {
-  console.count(user);
-  return "hi " + user;
-}
-
-user = "bob";
-greet();
-user = "alice";
-greet();
-greet();
-console.count("alice");
- -

다음과 같이 출력합니다.

- -
"bob: 1"
-"alice: 1"
-"alice: 2"
-"alice: 3"
- -
-
- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#count", "console.count()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성

- - - -

{{Compat("api.Console.count")}}

diff --git a/files/ko/web/api/console/count/index.md b/files/ko/web/api/console/count/index.md new file mode 100644 index 0000000000..0040da4c11 --- /dev/null +++ b/files/ko/web/api/console/count/index.md @@ -0,0 +1,102 @@ +--- +title: console.count() +slug: Web/API/Console/count +tags: + - API + - DOM + - Method + - Reference +translation_of: Web/API/Console/count +--- +
{{APIRef("Console API")}}
+ +

console.count() 메서드는 특정 count() 호출의 횟수를 세어 출력합니다.

+ +

{{AvailableInWorkers}}

+ +

구문

+ +
console.count([label]);
+ +

매개변수

+ +
+
label {{Optional_Inline}}
+
{{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 count() 호출의 수를 출력합니다. 누락한 경우 "default"를 지정한 것처럼 동작합니다.
+
+ +

예제

+ +
let user = "";
+
+function greet() {
+  console.count();
+  return "hi " + user;
+}
+
+user = "bob";
+greet();
+user = "alice";
+greet();
+greet();
+console.count();
+ +

위 코드의 출력 결과는 다음과 같은 형태입니다.

+ +
"default: 1"
+"default: 2"
+"default: 3"
+"default: 4"
+ +

레이블을 명시하지 않았기 때문에 default로 나타납니다.

+ +

첫 번째 count()의 매개변수에는 user 변수를 제공하고, 두 번째에는 문자열 "alice"를 제공할 경우...

+ +
let user = "";
+
+function greet() {
+  console.count(user);
+  return "hi " + user;
+}
+
+user = "bob";
+greet();
+user = "alice";
+greet();
+greet();
+console.count("alice");
+ +

다음과 같이 출력합니다.

+ +
"bob: 1"
+"alice: 1"
+"alice: 2"
+"alice: 3"
+ +
+
+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#count", "console.count()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.count")}}

diff --git a/files/ko/web/api/console/countreset/index.html b/files/ko/web/api/console/countreset/index.html deleted file mode 100644 index 30e6d3ee95..0000000000 --- a/files/ko/web/api/console/countreset/index.html +++ /dev/null @@ -1,108 +0,0 @@ ---- -title: Console.countReset() -slug: Web/API/Console/countReset -tags: - - API - - DOM - - Method - - Reference - - console -translation_of: Web/API/Console/countReset ---- -
{{APIRef("Console API")}}
- -

console.countReset() 메서드는 {{domxref("console.count()")}}의 카운터를 초기화합니다.

- -

{{AvailableInWorkers}}

- -

구문

- -
console.countReset([label]);
-
- -

매개변수

- -
-
label {{optional_inline}}
-
{{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 count()를 초기화합니다. 누락한 경우 "default" 카운터를 초기화합니다.
-
- -

예제

- -
let user = "";
-
-function greet() {
-  console.count();
-  return "hi " + user;
-}
-
-user = "bob";
-greet();
-user = "alice";
-greet();
-greet();
-console.count();
-console.countReset();
- -

위 코드의 출력 결과는 다음과 같은 형태입니다.

- -
"default: 1"
-"default: 2"
-"default: 3"
-"default: 4"
-"default: 0"
-
- -

countReset()이 기본 카운터를 초기화했음을 알 수 있습니다.

- -

레이블을 지정한 경우...

- -
let user = "";
-
-function greet() {
-  console.count(user);
-  return "hi " + user;
-}
-
-user = "bob";
-greet();
-user = "alice";
-greet();
-greet();
-console.countReset("bob");
-console.count("alice");
- -

다음과 같이 출력합니다.

- -
"bob: 1"
-"alice: 1"
-"alice: 2"
-"bob: 0"
-"alice: 3"
- -

카운터 bob을 초기화해도 alice의 값에는 영향이 없습니다.

- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#count", "console.countReset()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성

- - - -

{{Compat("api.Console.countReset")}}

diff --git a/files/ko/web/api/console/countreset/index.md b/files/ko/web/api/console/countreset/index.md new file mode 100644 index 0000000000..30e6d3ee95 --- /dev/null +++ b/files/ko/web/api/console/countreset/index.md @@ -0,0 +1,108 @@ +--- +title: Console.countReset() +slug: Web/API/Console/countReset +tags: + - API + - DOM + - Method + - Reference + - console +translation_of: Web/API/Console/countReset +--- +
{{APIRef("Console API")}}
+ +

console.countReset() 메서드는 {{domxref("console.count()")}}의 카운터를 초기화합니다.

+ +

{{AvailableInWorkers}}

+ +

구문

+ +
console.countReset([label]);
+
+ +

매개변수

+ +
+
label {{optional_inline}}
+
{{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 count()를 초기화합니다. 누락한 경우 "default" 카운터를 초기화합니다.
+
+ +

예제

+ +
let user = "";
+
+function greet() {
+  console.count();
+  return "hi " + user;
+}
+
+user = "bob";
+greet();
+user = "alice";
+greet();
+greet();
+console.count();
+console.countReset();
+ +

위 코드의 출력 결과는 다음과 같은 형태입니다.

+ +
"default: 1"
+"default: 2"
+"default: 3"
+"default: 4"
+"default: 0"
+
+ +

countReset()이 기본 카운터를 초기화했음을 알 수 있습니다.

+ +

레이블을 지정한 경우...

+ +
let user = "";
+
+function greet() {
+  console.count(user);
+  return "hi " + user;
+}
+
+user = "bob";
+greet();
+user = "alice";
+greet();
+greet();
+console.countReset("bob");
+console.count("alice");
+ +

다음과 같이 출력합니다.

+ +
"bob: 1"
+"alice: 1"
+"alice: 2"
+"bob: 0"
+"alice: 3"
+ +

카운터 bob을 초기화해도 alice의 값에는 영향이 없습니다.

+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#count", "console.countReset()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.countReset")}}

diff --git a/files/ko/web/api/console/debug/index.html b/files/ko/web/api/console/debug/index.html deleted file mode 100644 index 86a3abbc0d..0000000000 --- a/files/ko/web/api/console/debug/index.html +++ /dev/null @@ -1,59 +0,0 @@ ---- -title: console.debug() -slug: Web/API/Console/debug -tags: - - API - - Method - - Reference - - console -translation_of: Web/API/Console/debug ---- -
{{APIRef("Console API")}}
- -

console.debug() 메서드는 메시지를 "디버그" 중요도로 콘솔에 출력합니다. 디버그 중요도 메시지는 별도 설정 없이는 보이지 않습니다.

- -

{{AvailableInWorkers}}

- -

구문

- -
console.debug(obj1 [, obj2, ..., objN]);
-console.debug(msg [, subst1, ..., substN]);
-
- -

매개변수

- -
-
obj1 ... objN
-
출력에 사용할 JavaScript 객체. 각각의 문자열 표현을 순서대로 출력합니다.
-
msg
-
0개 이상의 치환 문자열을 포함하는 JavaScript 문자열.
-
subst1 ... substN
-
msg 매개변수의 치환 문자열에 대입할 JavaScript 객체.
-
- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#debug", "console.debug()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성

- -
- - -

{{Compat("api.Console.debug")}}

-
diff --git a/files/ko/web/api/console/debug/index.md b/files/ko/web/api/console/debug/index.md new file mode 100644 index 0000000000..86a3abbc0d --- /dev/null +++ b/files/ko/web/api/console/debug/index.md @@ -0,0 +1,59 @@ +--- +title: console.debug() +slug: Web/API/Console/debug +tags: + - API + - Method + - Reference + - console +translation_of: Web/API/Console/debug +--- +
{{APIRef("Console API")}}
+ +

console.debug() 메서드는 메시지를 "디버그" 중요도로 콘솔에 출력합니다. 디버그 중요도 메시지는 별도 설정 없이는 보이지 않습니다.

+ +

{{AvailableInWorkers}}

+ +

구문

+ +
console.debug(obj1 [, obj2, ..., objN]);
+console.debug(msg [, subst1, ..., substN]);
+
+ +

매개변수

+ +
+
obj1 ... objN
+
출력에 사용할 JavaScript 객체. 각각의 문자열 표현을 순서대로 출력합니다.
+
msg
+
0개 이상의 치환 문자열을 포함하는 JavaScript 문자열.
+
subst1 ... substN
+
msg 매개변수의 치환 문자열에 대입할 JavaScript 객체.
+
+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#debug", "console.debug()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성

+ +
+ + +

{{Compat("api.Console.debug")}}

+
diff --git a/files/ko/web/api/console/error/index.html b/files/ko/web/api/console/error/index.html deleted file mode 100644 index 529632b39e..0000000000 --- a/files/ko/web/api/console/error/index.html +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: Console.error() -slug: Web/API/Console/error -tags: - - API - - DOM - - 디버깅 - - 메소드 - - 웹 개발 - - 웹 콘솔 -translation_of: Web/API/Console/error ---- -
{{APIRef("Console API")}}
- -

웹 콘솔에 에러 메시지를 출력합니다.

- -

{{AvailableInWorkers}}

- -

문법

- -
console.error(obj1 [, obj2, ..., objN]);
-console.error(msg [, subst1, ..., substN]);
-console.exception(obj1 [, obj2, ..., objN]);
-console.exception(msg [, subst1, ..., substN]);
-
- -
-

노트: console.exception()console.error()의 별칭입니다. 둘은 기능적으로 동일합니다.

-
- -

파라미터

- -
-
obj1 ... objN
-
출력할 JavaScript 객체의 리스트. 각 객체의 문자열 표현은 나열된 순서로 함께 출력됩니다.
-
msg
-
0개 이상의 하위 문자열을 포함하는 JavaScript 문자열.
-
subst1 ... substN
-
msg 안의 대체할 하위 문자열을 포함하는 JavaScript 객체. 출력 형식에 추가 제어를 할 수 있게 해줍니다.
-
- -

자세한 내용은 {{domxref("console")}} 문서의 콘솔에 텍스트를 출력하기를 확인하세요.

- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#error", "console.error()")}}{{Spec2("Console API")}}초기 정의
- -

브라우저 호환성

- -
- - -

{{Compat("api.Console.error")}}

-
- -

함께 보기

- - diff --git a/files/ko/web/api/console/error/index.md b/files/ko/web/api/console/error/index.md new file mode 100644 index 0000000000..529632b39e --- /dev/null +++ b/files/ko/web/api/console/error/index.md @@ -0,0 +1,77 @@ +--- +title: Console.error() +slug: Web/API/Console/error +tags: + - API + - DOM + - 디버깅 + - 메소드 + - 웹 개발 + - 웹 콘솔 +translation_of: Web/API/Console/error +--- +
{{APIRef("Console API")}}
+ +

웹 콘솔에 에러 메시지를 출력합니다.

+ +

{{AvailableInWorkers}}

+ +

문법

+ +
console.error(obj1 [, obj2, ..., objN]);
+console.error(msg [, subst1, ..., substN]);
+console.exception(obj1 [, obj2, ..., objN]);
+console.exception(msg [, subst1, ..., substN]);
+
+ +
+

노트: console.exception()console.error()의 별칭입니다. 둘은 기능적으로 동일합니다.

+
+ +

파라미터

+ +
+
obj1 ... objN
+
출력할 JavaScript 객체의 리스트. 각 객체의 문자열 표현은 나열된 순서로 함께 출력됩니다.
+
msg
+
0개 이상의 하위 문자열을 포함하는 JavaScript 문자열.
+
subst1 ... substN
+
msg 안의 대체할 하위 문자열을 포함하는 JavaScript 객체. 출력 형식에 추가 제어를 할 수 있게 해줍니다.
+
+ +

자세한 내용은 {{domxref("console")}} 문서의 콘솔에 텍스트를 출력하기를 확인하세요.

+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#error", "console.error()")}}{{Spec2("Console API")}}초기 정의
+ +

브라우저 호환성

+ +
+ + +

{{Compat("api.Console.error")}}

+
+ +

함께 보기

+ + diff --git a/files/ko/web/api/console/group/index.html b/files/ko/web/api/console/group/index.html deleted file mode 100644 index a4c4033612..0000000000 --- a/files/ko/web/api/console/group/index.html +++ /dev/null @@ -1,83 +0,0 @@ ---- -title: Console.group() -slug: Web/API/Console/group -translation_of: Web/API/Console/group ---- -
{{APIRef("Console API")}}
- -

Web Console log 에 새로운 인라인 그룹을 만듭니다. This indents all following output by an additional level, until {{domxref("console.groupEnd()")}} is called.

- -

{{AvailableInWorkers}}

- -

구문

- -
console.group([label]);
- -

매개변수

- -

 

- -
-
label
-
Label for the group. Optional. (Chrome 59 tested) Does not work with console.groupEnd().
-
- -

{{h3_gecko_minversion("Using groups in the console", "9.0")}}

- -

You can use nested groups to help organize your output by visually associating related messages. To create a new nested block, call console.group(). The console.groupCollapsed() method is similar, but the new block is collapsed and requires clicking a disclosure button to read it.

- -

Note: From Gecko 9 until Gecko 51, the groupCollapsed() method was the same as group(). Collapsed groups are fully supported starting in Gecko 52. See {{bug("1088360")}}.

- -

To exit the current group, call console.groupEnd(). For example, given this code:

- -
console.log("This is the outer level");
-console.group();
-console.log("Level 2");
-console.group();
-console.log("Level 3");
-console.warn("More of level 3");
-console.groupEnd();
-console.log("Back to level 2");
-console.groupEnd();
-console.log("Back to the outer level");
- -

The output looks like this:

- -

A screenshot of messages nested in the console output.

- -

See Using groups in the console in the documentation of {{domxref("console")}} for more details.

- -

 

- -

설명

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#group", "console.group()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성

- -

 

- -

{{Compat("api.Console.group")}}

- -

 

- -

더 보기

- - diff --git a/files/ko/web/api/console/group/index.md b/files/ko/web/api/console/group/index.md new file mode 100644 index 0000000000..a4c4033612 --- /dev/null +++ b/files/ko/web/api/console/group/index.md @@ -0,0 +1,83 @@ +--- +title: Console.group() +slug: Web/API/Console/group +translation_of: Web/API/Console/group +--- +
{{APIRef("Console API")}}
+ +

Web Console log 에 새로운 인라인 그룹을 만듭니다. This indents all following output by an additional level, until {{domxref("console.groupEnd()")}} is called.

+ +

{{AvailableInWorkers}}

+ +

구문

+ +
console.group([label]);
+ +

매개변수

+ +

 

+ +
+
label
+
Label for the group. Optional. (Chrome 59 tested) Does not work with console.groupEnd().
+
+ +

{{h3_gecko_minversion("Using groups in the console", "9.0")}}

+ +

You can use nested groups to help organize your output by visually associating related messages. To create a new nested block, call console.group(). The console.groupCollapsed() method is similar, but the new block is collapsed and requires clicking a disclosure button to read it.

+ +

Note: From Gecko 9 until Gecko 51, the groupCollapsed() method was the same as group(). Collapsed groups are fully supported starting in Gecko 52. See {{bug("1088360")}}.

+ +

To exit the current group, call console.groupEnd(). For example, given this code:

+ +
console.log("This is the outer level");
+console.group();
+console.log("Level 2");
+console.group();
+console.log("Level 3");
+console.warn("More of level 3");
+console.groupEnd();
+console.log("Back to level 2");
+console.groupEnd();
+console.log("Back to the outer level");
+ +

The output looks like this:

+ +

A screenshot of messages nested in the console output.

+ +

See Using groups in the console in the documentation of {{domxref("console")}} for more details.

+ +

 

+ +

설명

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#group", "console.group()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성

+ +

 

+ +

{{Compat("api.Console.group")}}

+ +

 

+ +

더 보기

+ + diff --git a/files/ko/web/api/console/log/index.html b/files/ko/web/api/console/log/index.html deleted file mode 100644 index 0b67dd2293..0000000000 --- a/files/ko/web/api/console/log/index.html +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: Console.log() -slug: Web/API/Console/log -tags: - - API - - console - - console.log() - - 메소드 -translation_of: Web/API/Console/log ---- -
{{APIRef("Console API")}}
- -

Web Console에 메시지를 출력합니다.

- -

{{AvailableInWorkers}}

- -

구문

- -
console.log(obj1 [, obj2, ..., objN]);
-console.log(msg [, subst1, ..., substN]);
-
- -

매개 변수

- -
-
obj1 ... objN
-
출력할 자바스크립트 객체의 모음입니다. 각각의 자바스크립트 객체들의 문자열 표현은 순서가 있는 목록에 추가되며, 출력됩니다. 
-
msg
-
0개 이상의 치환 문자열(ex:%d, %s)들을 포함하는 자바스크립트 문자열입니다.
-
subst1 ... substN
-
msg 내의 치환 문자열들을 치환할 자바스크립트 객체들입니다. 이것은 추가적인 출력 형식 제어권을 제공합니다.
-
- -

자세한 내용은 {{domxref("console")}} 기록 문서에서 Outputting text to the console을 참조하십시오.

- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#consolelogobject--object-", "console.log()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성

- - - -

{{Compat("api.Console.log")}}

- -

console.dir() 과의 차이

- -

당신은 console.dir() 과 console.log() 가 무엇이 다른지 궁금할 수 있습니다.

- -

DOM 요소들을 콘솔로 보낼 때 Chrome에서 다른 유용한 차이점이 있습니다.

- -

- -

안내:

- - - -

구체적으로, console.log는 DOM 요소에 대해 특별한 처리를 제공하지만 console.dir은 그렇지 않습니다. 이것은 종종 DOM JS 객체의 전체 표현을 보려고 할 때 유용합니다.

- -

이것과 다른 함수들에 대한 더 많은 정보가  Chrome Console API reference에 있습니다.

- -

객체 로깅하기

- -

console.log(obj);를 사용하지 말고 
- console.log(JSON.parse(JSON.stringify(obj)));를 사용하시기 바랍니다.

- -

이 방법은 여러분이 로그를 남길 당시의 obj 값을 보려고 사용했을겁니다. 그러나 많은 브라우저가 값이 갱신 될때마다 끊임없이 바뀐 값을 보여줍니다. 이는 여러분이 원하는 방법이 아닐겁니다.

- -

참조

- - diff --git a/files/ko/web/api/console/log/index.md b/files/ko/web/api/console/log/index.md new file mode 100644 index 0000000000..0b67dd2293 --- /dev/null +++ b/files/ko/web/api/console/log/index.md @@ -0,0 +1,94 @@ +--- +title: Console.log() +slug: Web/API/Console/log +tags: + - API + - console + - console.log() + - 메소드 +translation_of: Web/API/Console/log +--- +
{{APIRef("Console API")}}
+ +

Web Console에 메시지를 출력합니다.

+ +

{{AvailableInWorkers}}

+ +

구문

+ +
console.log(obj1 [, obj2, ..., objN]);
+console.log(msg [, subst1, ..., substN]);
+
+ +

매개 변수

+ +
+
obj1 ... objN
+
출력할 자바스크립트 객체의 모음입니다. 각각의 자바스크립트 객체들의 문자열 표현은 순서가 있는 목록에 추가되며, 출력됩니다. 
+
msg
+
0개 이상의 치환 문자열(ex:%d, %s)들을 포함하는 자바스크립트 문자열입니다.
+
subst1 ... substN
+
msg 내의 치환 문자열들을 치환할 자바스크립트 객체들입니다. 이것은 추가적인 출력 형식 제어권을 제공합니다.
+
+ +

자세한 내용은 {{domxref("console")}} 기록 문서에서 Outputting text to the console을 참조하십시오.

+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#consolelogobject--object-", "console.log()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.log")}}

+ +

console.dir() 과의 차이

+ +

당신은 console.dir() 과 console.log() 가 무엇이 다른지 궁금할 수 있습니다.

+ +

DOM 요소들을 콘솔로 보낼 때 Chrome에서 다른 유용한 차이점이 있습니다.

+ +

+ +

안내:

+ + + +

구체적으로, console.log는 DOM 요소에 대해 특별한 처리를 제공하지만 console.dir은 그렇지 않습니다. 이것은 종종 DOM JS 객체의 전체 표현을 보려고 할 때 유용합니다.

+ +

이것과 다른 함수들에 대한 더 많은 정보가  Chrome Console API reference에 있습니다.

+ +

객체 로깅하기

+ +

console.log(obj);를 사용하지 말고 
+ console.log(JSON.parse(JSON.stringify(obj)));를 사용하시기 바랍니다.

+ +

이 방법은 여러분이 로그를 남길 당시의 obj 값을 보려고 사용했을겁니다. 그러나 많은 브라우저가 값이 갱신 될때마다 끊임없이 바뀐 값을 보여줍니다. 이는 여러분이 원하는 방법이 아닐겁니다.

+ +

참조

+ + diff --git a/files/ko/web/api/console/time/index.html b/files/ko/web/api/console/time/index.html deleted file mode 100644 index bcb3777ccb..0000000000 --- a/files/ko/web/api/console/time/index.html +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: Console.time() -slug: Web/API/Console/time -translation_of: Web/API/Console/time ---- -
{{APIRef("Console API")}}
- -

타이머를 시작해 작업이 얼마나 걸리는지 추적할 수 있습니다. 각 타이머에게 고유한 이름을 줄 수 있고, 한 페이지에 최대 10,000개의 타이머를 설정할 수 있습니다. 같은 이름으로 {{domxref("console.timeEnd()")}}를 호출할 때, 브라우저가 밀리초 단위로 경과한 시간을 출력합니다.

- -

자세한 내용과 예제는 {{domxref("console")}} 내의 타이머를 확인하세요.

- -

{{AvailableInWorkers}}

- -

문법

- -
console.time(label);
-
- -

파라미터

- -
-
label
-
새 타이머에게 설정할 이름. 타이머를 식별합니다. 같은 이름으로 {{domxref("console.timeEnd()")}}를 호출하면 타이머가 중단되고 콘솔에 시간을 출력합니다.
-
- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#time", "console.time()")}}{{Spec2("Console API")}}초기 정의
- -

브라우저 호환성

- - - -

{{Compat("api.Console.time")}}

- -

함께 보기

- - diff --git a/files/ko/web/api/console/time/index.md b/files/ko/web/api/console/time/index.md new file mode 100644 index 0000000000..bcb3777ccb --- /dev/null +++ b/files/ko/web/api/console/time/index.md @@ -0,0 +1,56 @@ +--- +title: Console.time() +slug: Web/API/Console/time +translation_of: Web/API/Console/time +--- +
{{APIRef("Console API")}}
+ +

타이머를 시작해 작업이 얼마나 걸리는지 추적할 수 있습니다. 각 타이머에게 고유한 이름을 줄 수 있고, 한 페이지에 최대 10,000개의 타이머를 설정할 수 있습니다. 같은 이름으로 {{domxref("console.timeEnd()")}}를 호출할 때, 브라우저가 밀리초 단위로 경과한 시간을 출력합니다.

+ +

자세한 내용과 예제는 {{domxref("console")}} 내의 타이머를 확인하세요.

+ +

{{AvailableInWorkers}}

+ +

문법

+ +
console.time(label);
+
+ +

파라미터

+ +
+
label
+
새 타이머에게 설정할 이름. 타이머를 식별합니다. 같은 이름으로 {{domxref("console.timeEnd()")}}를 호출하면 타이머가 중단되고 콘솔에 시간을 출력합니다.
+
+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#time", "console.time()")}}{{Spec2("Console API")}}초기 정의
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.time")}}

+ +

함께 보기

+ + diff --git a/files/ko/web/api/console/timeend/index.html b/files/ko/web/api/console/timeend/index.html deleted file mode 100644 index d9bc7674e5..0000000000 --- a/files/ko/web/api/console/timeend/index.html +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: Console.timeEnd() -slug: Web/API/Console/timeEnd -tags: - - 디버깅 - - 웹 개발 - - 웹 콘솔 - - 콘솔 - - 타이머 -translation_of: Web/API/Console/timeEnd ---- -
{{APIRef("Console API")}}
- -
이전에 {{domxref("console.time()")}}를 호출하여 시작된 타이머를 중지하고 웹 콘솔에 경과 시간을 밀리초 단위로 표시합니다.
- -
 
- -
자세한 내용과 예제는 콘솔 문서의 Timers를 참조하세요.
- -
 
- -

{{AvailableInWorkers}}

- -

구문(Syntax)

- -
console.timeEnd(label);
-
- -

매개 변수(Parameters)

- -
-
label
-
중지할 타이머의 이름입니다. console.time()를 호출할 때의 이름을 사용하여 해당 타이머를 중지할 수 있는 식별자 역할을 합니다.
-
- -

명세서(Specifications)

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#timeend", "console.timeEnd()")}}{{Spec2("Console API")}}Initial definition
- -

브라우저 호환성(Browser compatibility)

- -
- - -

{{Compat("api.Console.timeEnd")}}

-
- -

함께 보기(See also)

- - diff --git a/files/ko/web/api/console/timeend/index.md b/files/ko/web/api/console/timeend/index.md new file mode 100644 index 0000000000..d9bc7674e5 --- /dev/null +++ b/files/ko/web/api/console/timeend/index.md @@ -0,0 +1,68 @@ +--- +title: Console.timeEnd() +slug: Web/API/Console/timeEnd +tags: + - 디버깅 + - 웹 개발 + - 웹 콘솔 + - 콘솔 + - 타이머 +translation_of: Web/API/Console/timeEnd +--- +
{{APIRef("Console API")}}
+ +
이전에 {{domxref("console.time()")}}를 호출하여 시작된 타이머를 중지하고 웹 콘솔에 경과 시간을 밀리초 단위로 표시합니다.
+ +
 
+ +
자세한 내용과 예제는 콘솔 문서의 Timers를 참조하세요.
+ +
 
+ +

{{AvailableInWorkers}}

+ +

구문(Syntax)

+ +
console.timeEnd(label);
+
+ +

매개 변수(Parameters)

+ +
+
label
+
중지할 타이머의 이름입니다. console.time()를 호출할 때의 이름을 사용하여 해당 타이머를 중지할 수 있는 식별자 역할을 합니다.
+
+ +

명세서(Specifications)

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#timeend", "console.timeEnd()")}}{{Spec2("Console API")}}Initial definition
+ +

브라우저 호환성(Browser compatibility)

+ +
+ + +

{{Compat("api.Console.timeEnd")}}

+
+ +

함께 보기(See also)

+ + diff --git a/files/ko/web/api/console/trace/index.html b/files/ko/web/api/console/trace/index.html deleted file mode 100644 index 2726eca0d4..0000000000 --- a/files/ko/web/api/console/trace/index.html +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: console.trace() -slug: Web/API/Console/trace -tags: - - API - - DOM - - Firefox - - 디버깅 - - 메소드 - - 웹 개발 - - 웹 콘솔 - - 추적 - - 콘솔 - - 크롬 -translation_of: Web/API/Console/trace ---- -
{{APIRef("Console API")}}
- -

웹 콘솔에 스택 추적을 출력합니다.

- -

{{AvailableInWorkers}}

- -

자세한 내용과 예제는 {{domxref("console")}} 내의 스택 추적을 확인하세요.

- -

문법

- -
console.trace();
-
- -

예제

- -
function foo() {
-  function bar() {
-    console.trace();
-  }
-  bar();
-}
-
-foo();
-
- -

콘솔에 다음과 같은 추적이 표시됩니다.

- -
bar
-foo
-<anonymous>
- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#trace", "console.trace()")}}{{Spec2("Console API")}}초기 정의
- -

브라우저 호환성

- - - -

{{Compat("api.Console.trace")}}

- -

함께 보기

- - diff --git a/files/ko/web/api/console/trace/index.md b/files/ko/web/api/console/trace/index.md new file mode 100644 index 0000000000..2726eca0d4 --- /dev/null +++ b/files/ko/web/api/console/trace/index.md @@ -0,0 +1,77 @@ +--- +title: console.trace() +slug: Web/API/Console/trace +tags: + - API + - DOM + - Firefox + - 디버깅 + - 메소드 + - 웹 개발 + - 웹 콘솔 + - 추적 + - 콘솔 + - 크롬 +translation_of: Web/API/Console/trace +--- +
{{APIRef("Console API")}}
+ +

웹 콘솔에 스택 추적을 출력합니다.

+ +

{{AvailableInWorkers}}

+ +

자세한 내용과 예제는 {{domxref("console")}} 내의 스택 추적을 확인하세요.

+ +

문법

+ +
console.trace();
+
+ +

예제

+ +
function foo() {
+  function bar() {
+    console.trace();
+  }
+  bar();
+}
+
+foo();
+
+ +

콘솔에 다음과 같은 추적이 표시됩니다.

+ +
bar
+foo
+<anonymous>
+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#trace", "console.trace()")}}{{Spec2("Console API")}}초기 정의
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.trace")}}

+ +

함께 보기

+ + diff --git a/files/ko/web/api/console/warn/index.html b/files/ko/web/api/console/warn/index.html deleted file mode 100644 index b63bb925db..0000000000 --- a/files/ko/web/api/console/warn/index.html +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: Console.warn() -slug: Web/API/Console/warn -tags: - - API - - DOM - - 디버깅 - - 메소드 - - 웹 개발 - - 웹 콘솔 -translation_of: Web/API/Console/warn ---- -
{{APIRef("Console API")}}
- -

웹 콘솔에 경고 메시지를 출력합니다.

- -

{{AvailableInWorkers}}

- -

{{Note("Firefox에서는 웹 콘솔의 경고 옆에 작은 느낌표 아이콘이 나타납니다.")}}

- -

문법

- -
console.warn(obj1 [, obj2, ..., objN]);
-console.warn(msg [, subst1, ..., substN]);
-
- -

파라미터

- -
-
obj1 ... objN
-
출력할 JavaScript 객체의 리스트. 각 객체의 문자열 표현은 입력한 순서대로 함께 출력됩니다.
-
msg
-
0개 이상의 문자열을 포함하는 JavaScript 문자열.
-
subst1 ... substN
-
msg 안의 문자열을 대체하기 위한 JavaScript 객체. 출력의 형식을 추가로 제어할 수 있게해줍니다.
-
- -

자세한 내용은 {{domxref("console")}} 문서 내 콘솔에 텍스트를 출력하기를 확인하세요.

- -

명세

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName("Console API", "#warn", "console.warn()")}}{{Spec2("Console API")}}초기 정의
- -

브라우저 호환성

- - - -

{{Compat("api.Console.warn")}}

- -

함께 보기

- - diff --git a/files/ko/web/api/console/warn/index.md b/files/ko/web/api/console/warn/index.md new file mode 100644 index 0000000000..b63bb925db --- /dev/null +++ b/files/ko/web/api/console/warn/index.md @@ -0,0 +1,70 @@ +--- +title: Console.warn() +slug: Web/API/Console/warn +tags: + - API + - DOM + - 디버깅 + - 메소드 + - 웹 개발 + - 웹 콘솔 +translation_of: Web/API/Console/warn +--- +
{{APIRef("Console API")}}
+ +

웹 콘솔에 경고 메시지를 출력합니다.

+ +

{{AvailableInWorkers}}

+ +

{{Note("Firefox에서는 웹 콘솔의 경고 옆에 작은 느낌표 아이콘이 나타납니다.")}}

+ +

문법

+ +
console.warn(obj1 [, obj2, ..., objN]);
+console.warn(msg [, subst1, ..., substN]);
+
+ +

파라미터

+ +
+
obj1 ... objN
+
출력할 JavaScript 객체의 리스트. 각 객체의 문자열 표현은 입력한 순서대로 함께 출력됩니다.
+
msg
+
0개 이상의 문자열을 포함하는 JavaScript 문자열.
+
subst1 ... substN
+
msg 안의 문자열을 대체하기 위한 JavaScript 객체. 출력의 형식을 추가로 제어할 수 있게해줍니다.
+
+ +

자세한 내용은 {{domxref("console")}} 문서 내 콘솔에 텍스트를 출력하기를 확인하세요.

+ +

명세

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("Console API", "#warn", "console.warn()")}}{{Spec2("Console API")}}초기 정의
+ +

브라우저 호환성

+ + + +

{{Compat("api.Console.warn")}}

+ +

함께 보기

+ + -- cgit v1.2.3-54-g00ecf