diff options
author | Jongha Kim <kim.jongha@gmail.com> | 2021-07-29 08:53:12 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 08:53:12 +0900 |
commit | 28a9debdd0bc6e67ba3603172525b5ad2be4c26d (patch) | |
tree | 931e965d84603a1184e39b5e6928ca2b6a2c0e7f /files | |
parent | 6d3234e3f9ff37cbd766dc00c607828ad6f34a53 (diff) | |
download | translated-content-28a9debdd0bc6e67ba3603172525b5ad2be4c26d.tar.gz translated-content-28a9debdd0bc6e67ba3603172525b5ad2be4c26d.tar.bz2 translated-content-28a9debdd0bc6e67ba3603172525b5ad2be4c26d.zip |
[ko] javascript/global_objects/null en-us 문서와 동기화 (#1414)
* javascript/global_objects/null en-us 문서와 동기화
* Update files/ko/web/javascript/reference/global_objects/null/index.html
Co-authored-by: alattalatta <urty5656@gmail.com>
* 리뷰 반영
Co-authored-by: alattalatta <urty5656@gmail.com>
Diffstat (limited to 'files')
-rw-r--r-- | files/ko/web/javascript/reference/global_objects/null/index.html | 52 |
1 files changed, 27 insertions, 25 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/null/index.html b/files/ko/web/javascript/reference/global_objects/null/index.html index e69295c9f6..823ff52446 100644 --- a/files/ko/web/javascript/reference/global_objects/null/index.html +++ b/files/ko/web/javascript/reference/global_objects/null/index.html @@ -3,22 +3,31 @@ title: 'null' slug: Web/JavaScript/Reference/Global_Objects/null tags: - JavaScript + - Language feature - Literal - Primitive - - Reference +browser-compat: javascript.builtins.null translation_of: Web/JavaScript/Reference/Global_Objects/null --- -<div>{{jsSidebar("Objects")}}</div> +<div>{{jsSidebar("Operators")}}</div> -<p><strong><code>null</code></strong>은 JavaScript의 {{Glossary("Primitive", "원시 값")}} 중 하나로, 어떤 값이 의도적으로 비어있음을 표현하며 불리언 연산에서는 {{glossary("falsy", "거짓")}}으로 취급합니다.</p> +<p> + <strong><code>null</code></strong>은 JavaScript의 <a href="/ko/docs/Glossary/Primitive">원시 값</a> 중 하나로, 어떤 값이 의도적으로 비어있음을 표현하며 불리언 + 연산에서는 <a href="/ko/docs/Glossary/Falsy">거짓</a>으로 취급합니다. +</p> <div>{{EmbedInteractiveExample("pages/js/globalprops-null.html")}}</div> +<h2 id="Syntax">구문</h2> +<pre class="brush: js">null</pre> -<h2 id="설명">설명</h2> +<h2 id="Description">설명</h2> -<p><code>null</code>은 리터럴로서, <code>null</code>로 작성할 수 있습니다. <code>null</code>은 {{jsxref("undefined")}}와 같은 전역 객체의 식별자가 아닙니다. 대신 식별되지 않은 상태를 나타내며 해당 변수가 어떠한 객체도 가리키고 있지 않음을 표시합니다. API에서는 대개 객체를 기대했지만, 어떤 적합한 객체도 존재하지 않을 때 반환합니다.</p> +<p><code>null</code>은 리터럴로서 <code>null</code>이라 씁니다. <code>null</code>은 + {{jsxref("Global_Objects/undefined","undefined")}}과 같이 글로벌 객체의 속성에 대한 식별자가 아닙니다. 대신 <code>null</code>은 식별되지 않은 것을 + 표현합니다. 즉, 변수가 아무런 객체를 가리키지 않음을 표현합니다. API에서는 <code>null</code>을 종종 관련된 객체가 존재하지 않을 때 그 객체 대신 사용합니다. +</p> <pre class="brush: js">// 정의되지 않고 초기화된 적도 없는 foo foo; //ReferenceError: foo is not defined @@ -28,9 +37,10 @@ var foo = null; foo; //null </pre> -<h3 id="null과_undefined의_차이"><code>null</code>과 <code>undefined</code>의 차이</h3> +<h3 id="Difference_between_null_and_undefined"><code>null</code>과 <code>undefined</code>의 차이</h3> -<p><code>null</code> 또는 <code>undefined</code>를 검사할 때, <a href="/ko/docs/Web/JavaScript/Reference/Operators/Comparison_Operators">동등 연산자(==)와 일치 연산자(===)의 차이</a>를 주의하세요. 동등 연산자는 자료형 변환을 수행합니다.</p> +<p><code>null</code> 또는 <code>undefined</code>를 검사할 때, <a + href="/ko/docs/Web/JavaScript/Reference/Operators">동등 연산자(==)와 일치 연산자(===)의 차이</a>를 주의하세요. 동등 연산자는 자료형 변환을 수행합니다.</p> <pre class="brush: js">typeof null // "object" (하위호환 유지를 위해 "null"이 아님) typeof undefined // "undefined" @@ -42,28 +52,20 @@ null == null // true isNaN(1 + null) // false isNaN(1 + undefined) // true</pre> -<h2 id="명세">명세</h2> +<h2 id="Specifications">명세</h2> -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">명세</th> - </tr> - <tr> - <td>{{SpecName('ESDraft', '#sec-null-value', 'null value')}}</td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="브라우저_호환성">브라우저 호환성</h2> +<h2 id="Browser_compatibility">브라우저 호환성</h2> +<p>{{Compat}}</p> - -<p>{{Compat("javascript.builtins.null")}}</p> - -<h2 id="같이_보기">같이 보기</h2> +<h2 id="See_also">같이 보기</h2> <ul> - <li>{{jsxref("undefined")}}</li> - <li>{{jsxref("NaN")}}</li> + <li>{{jsxref("undefined")}}</li> + <li>{{jsxref("NaN")}}</li> + <li> + {{jsxref("Operators/void", "void")}} 연산자 + </li> </ul> |