diff options
author | iamgamja <hmmthinking@naver.com> | 2022-02-20 16:53:53 +0900 |
---|---|---|
committer | Sungwoo Park <codest99@gmail.com> | 2022-02-20 18:36:04 +0900 |
commit | 98912f67837009489e12d1a950444fdf560ac0d9 (patch) | |
tree | 53b0aab10ed441d307a156c917a7366eb73022bd | |
parent | 2aa763f8fae4fc46bbbfd5b012f865afa69c068b (diff) | |
download | translated-content-98912f67837009489e12d1a950444fdf560ac0d9.tar.gz translated-content-98912f67837009489e12d1a950444fdf560ac0d9.tar.bz2 translated-content-98912f67837009489e12d1a950444fdf560ac0d9.zip |
edit: 리뷰된 내용 적용
-rw-r--r-- | files/ko/web/api/console/count/index.md | 2 | ||||
-rw-r--r-- | files/ko/web/api/console/debug/index.md | 2 | ||||
-rw-r--r-- | files/ko/web/api/console/group/index.md | 2 | ||||
-rw-r--r-- | files/ko/web/api/console/log/index.md | 4 | ||||
-rw-r--r-- | files/ko/web/api/console/time/index.md | 7 |
5 files changed, 11 insertions, 6 deletions
diff --git a/files/ko/web/api/console/count/index.md b/files/ko/web/api/console/count/index.md index 5f0322d3ae..ce2e1f4232 100644 --- a/files/ko/web/api/console/count/index.md +++ b/files/ko/web/api/console/count/index.md @@ -27,7 +27,7 @@ console.count([label]); ### 매개변수 - `label` {{Optional_Inline}} - - : {{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 count() 호출의 수를 출력합니다. 누락한 경우 "default"를 지정한 것처럼 동작합니다. + - : {{jsxref("String")}}. 지정한 경우, 이 레이블을 지정한 `count()` 호출의 수를 출력합니다. 누락한 경우 "default"를 지정한 것처럼 동작합니다. ## 예제 diff --git a/files/ko/web/api/console/debug/index.md b/files/ko/web/api/console/debug/index.md index 2f3e0daa1c..79e457b0b4 100644 --- a/files/ko/web/api/console/debug/index.md +++ b/files/ko/web/api/console/debug/index.md @@ -36,7 +36,7 @@ console.debug(msg [, subst1, ..., substN]); - `msg` - : 0개 이상의 치환 문자열을 포함하는 JavaScript 문자열. `subst1`부터 `substN`까지 순서대로 치환됩니다. - `subst1` ... `substN` - - : `msg` 매개변수의 치환 문자열에 대체할 JavaScript 객체. 출력 형식에 추가 제어를 할 수 있게 해줍니다. 치환 작동 방식에 대한 설명은 [문자열 치환 사용하기](/ko/docs/Web/API/console#문자열_치환_사용하기)를 참조하세요. + - : `msg` 매개변수의 치환 문자열에 대체할 JavaScript 객체. 출력 형식에 추가 제어를 할 수 있게 해줍니다. 치환 작동 방식에 대한 설명은 [console](/ko/docs/Web/API/console) 문서의 [문자열 치환 사용하기](/ko/docs/Web/API/console#문자열_치환_사용하기)를 참조하세요. ## 명세 diff --git a/files/ko/web/api/console/group/index.md b/files/ko/web/api/console/group/index.md index ba245a502a..017ff5bec8 100644 --- a/files/ko/web/api/console/group/index.md +++ b/files/ko/web/api/console/group/index.md @@ -28,7 +28,7 @@ console.group([label]); - `label` - : 그룹의 레이블입니다. 이 매개변수는 선택사항입니다. (Chrome 59에서 테스트됨) `console.groupEnd()`와 함께 작동하지 않습니다. -### 콘솔에서 그룹 사용하기 +{{h3_gecko_minversion("콘솔에서 그룹 사용하기", "9.0")}} 중첩 그룹을 사용하여 관련 메시지를 시각적으로 연결하여 출력을 구성할 수 있습니다. 새 중첩 블록을 만들려면 `console.group()`을 호출하세요. `console.groupCollapsed()` 메서드와 비슷하지만 새 블록이 접혀 있고 이를 읽으려면 공개 버튼을 클릭해야 합니다. diff --git a/files/ko/web/api/console/log/index.md b/files/ko/web/api/console/log/index.md index fa3a453cc9..fbff7e1799 100644 --- a/files/ko/web/api/console/log/index.md +++ b/files/ko/web/api/console/log/index.md @@ -17,7 +17,7 @@ translation_of: Web/API/Console/log --- {{APIRef("Console API")}} -**`console.log()`** 메서드는 웹 콘솔에 메시지를 출력합니다. 메시지는 단일 문자열(선택적 대체 값 포함)이거나 더 많은 JavaScript 객체중 하나일 수 있습니다. +**`console.log()`** 메서드는 웹 콘솔에 메시지를 출력합니다. 메시지는 (선택적 대체 값을 포함한) 단일 문자열이거나 더 많은 JavaScript 객체중 하나일 수 있습니다. {{AvailableInWorkers}} @@ -47,8 +47,6 @@ DOM 요소들을 콘솔로 보낼 때 Chrome에서 다른 유용한 차이점이 ![](dozdcyr.png) -안내: - - `console.log`는 요소를 HTML과 같은 트리 구조로 출력합니다. - `console.dir`은 요소를 JSON과 같은 트리 구조로 출력합니다. diff --git a/files/ko/web/api/console/time/index.md b/files/ko/web/api/console/time/index.md index 9382db9c3f..8ab072f4cf 100644 --- a/files/ko/web/api/console/time/index.md +++ b/files/ko/web/api/console/time/index.md @@ -30,6 +30,13 @@ console.time(label); - `label` - : 새 타이머에게 설정할 이름. 타이머를 식별합니다. 같은 이름으로 {{domxref("console.timeEnd()")}}를 호출하면 타이머가 중단되고 콘솔에 시간을 출력합니다. +## 명세 + +{{Specifications}} + +## 브라우저 호환성 + +{{Compat}} ## 같이 보기 |