From 6e9fe98036090a37cc6247b873845505e5b512fb Mon Sep 17 00:00:00 2001 From: Tanner Dolby Date: Tue, 22 Feb 2022 01:49:36 -0800 Subject: Removes empty
or

elements from pages (#3093) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Removes all empty paragraph elements * Removes all empty div elements * Preserve empty div in code snippet * Preserve empty elements inside code snippets * Remove fr files which were converted into markdown * Web/CSS/transform-function/scaleX()/index.html The file is already renamed to index.md。 * remove not needed file * Resolve remaining conflict Co-authored-by: julieng Co-authored-by: Masahiro FUJIMOTO --- files/ko/web/javascript/inheritance_and_the_prototype_chain/index.html | 2 +- .../javascript/reference/global_objects/intl/locale/language/index.html | 2 +- .../web/javascript/reference/global_objects/object/tostring/index.html | 2 +- .../ko/web/javascript/reference/global_objects/string/match/index.html | 2 +- files/ko/web/javascript/reference/strict_mode/index.html | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'files/ko/web/javascript') diff --git a/files/ko/web/javascript/inheritance_and_the_prototype_chain/index.html b/files/ko/web/javascript/inheritance_and_the_prototype_chain/index.html index ae9edde4a0..4682cca9a6 100644 --- a/files/ko/web/javascript/inheritance_and_the_prototype_chain/index.html +++ b/files/ko/web/javascript/inheritance_and_the_prototype_chain/index.html @@ -99,7 +99,7 @@ console.log(p.m()); // 13

최적의 실습을 위해서 콘솔을 열고 "Console" 탭으로 이동하여 아래의 JavaScript 코드를 복사하여 붙여넣은 다음 , 엔터키를 눌러 실행할 것을 적극 권한다. (콘솔은 대부분 웹 브라우저의 Developer Tools에 포함되어있다. 자세한 내용은 Firefox Developer ToolsChrome DevTools, Edge DevTools 에서 확인할 수 있다. )

-
+
function doSomething(){}
 console.log( doSomething.prototype );
diff --git a/files/ko/web/javascript/reference/global_objects/intl/locale/language/index.html b/files/ko/web/javascript/reference/global_objects/intl/locale/language/index.html
index 1941356e98..b9f3fe48a4 100644
--- a/files/ko/web/javascript/reference/global_objects/intl/locale/language/index.html
+++ b/files/ko/web/javascript/reference/global_objects/intl/locale/language/index.html
@@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Intl/Locale/language
 ---
 
{{JSRef}}
-
+

Intl.Locale.prototype.language 속성은 locale과 관련된 언어를 반환하는 접근자 속성입니다.

diff --git a/files/ko/web/javascript/reference/global_objects/object/tostring/index.html b/files/ko/web/javascript/reference/global_objects/object/tostring/index.html index 299b269117..9407c0f31b 100644 --- a/files/ko/web/javascript/reference/global_objects/object/tostring/index.html +++ b/files/ko/web/javascript/reference/global_objects/object/tostring/index.html @@ -9,7 +9,7 @@ tags: - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Object/toString --- -
+
{{JSRef}}
diff --git a/files/ko/web/javascript/reference/global_objects/string/match/index.html b/files/ko/web/javascript/reference/global_objects/string/match/index.html index 5297d440be..96bee0212b 100644 --- a/files/ko/web/javascript/reference/global_objects/string/match/index.html +++ b/files/ko/web/javascript/reference/global_objects/string/match/index.html @@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/match ---
{{JSRef}}
-
+

match() 메서드는 문자열이 정규식과 매치되는 부분을 검색합니다.

diff --git a/files/ko/web/javascript/reference/strict_mode/index.html b/files/ko/web/javascript/reference/strict_mode/index.html index 063680b529..298c730afd 100644 --- a/files/ko/web/javascript/reference/strict_mode/index.html +++ b/files/ko/web/javascript/reference/strict_mode/index.html @@ -13,7 +13,7 @@ translation_of: Web/JavaScript/Reference/Strict_mode
ECMAScript 5 에서 소개된 JavaScript 의 엄격모드는 JavaScript 의 제한된 버전을 선택하여 암묵적인 "느슨한 모드(sloppy mode)" 를 해제하기 위한 방법입니다. 엄격 모드는 단지 부분적인 것이 아니며, 이것은 고의적으로 일반 코드와 다른 시멘틱을 가지고 있습니다. 엄격모드를 지원하지 않는 브라우저에서는 엄격 모드의 코드가 다른 방식으로 동작할 것입니다, 그 때문에 엄격 모드가 적절하게 적용된 피쳐 테스트 없이 엄격 모드에 의존하면 안됩니다. 엄격 모드의 코드와 비-엄격 모드의 코드는 공존할 수 있으며, 때문에 스크립트의 엄격 모드를 취사 선택하는 것이 점진적으로 가능하게 되었습니다.
-
+

엄격 모드는 평범한 JavaScript 시멘틱스에 몇가지 변경이 일어나게 합니다.

-- cgit v1.2.3-54-g00ecf