diff options
author | iamgamja <hmmthinking@naver.com> | 2022-02-09 12:48:58 +0900 |
---|---|---|
committer | Sungwoo Park <codest99@gmail.com> | 2022-02-20 18:36:04 +0900 |
commit | 87990b6bf559dd76dd65cefc2b112daacad9962a (patch) | |
tree | 1f0ca56db2492887039b8258e1fd9ca32b92c377 /files/ko/web/api/console/clear/index.md | |
parent | 3343d5d346b34d0799894a607f990a6766e987f5 (diff) | |
download | translated-content-87990b6bf559dd76dd65cefc2b112daacad9962a.tar.gz translated-content-87990b6bf559dd76dd65cefc2b112daacad9962a.tar.bz2 translated-content-87990b6bf559dd76dd65cefc2b112daacad9962a.zip |
rename
Diffstat (limited to 'files/ko/web/api/console/clear/index.md')
-rw-r--r-- | files/ko/web/api/console/clear/index.md | 43 |
1 files changed, 43 insertions, 0 deletions
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 +--- +<div>{{APIRef("Console API")}}</div> + +<p><strong><code>console.clear()</code></strong> 메서드는 현재 환경에서 가능한 경우, 콘솔에 기록된 메시지를 모두 지웁니다.</p> + +<h2 id="구문">구문</h2> + +<pre class="syntaxbox">console.clear(); +</pre> + +<h2 id="명세">명세</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("Console API", "#clear", "console.clear()")}}</td> + <td>{{Spec2("Console API")}}</td> + <td>Initial definition</td> + </tr> + </tbody> +</table> + +<h2 id="브라우저_호환성">브라우저 호환성</h2> + + + +<p>{{Compat("api.Console.clear")}}</p> |