From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ko/glossary/null/index.html | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 files/ko/glossary/null/index.html (limited to 'files/ko/glossary/null') diff --git a/files/ko/glossary/null/index.html b/files/ko/glossary/null/index.html new file mode 100644 index 0000000000..bbf1e8f80e --- /dev/null +++ b/files/ko/glossary/null/index.html @@ -0,0 +1,38 @@ +--- +title: 'Null' +slug: Glossary/Null +tags: + - CodingScripting + - Glossary + - JavaScript + - Types +translation_of: Glossary/Null +--- +

컴퓨터 과학에서 null 값은 일반적으로 존재하지 않거나 유효하지 않은 {{glossary ("object")}} 또는 주소를 의도적으로 가리키는 참조를 나타냅니다. null 참조의 의미는 언어의 구현에 따라 다양하다.

+ +

null은 동작이 원시적으로 보이기 때문에 {{Glossary ( "Primitive", "primitive values")}} 중 하나로 표시됩니다.

+ +

그러나 특정 경우에, null 은 처음 봤던것 만큼 "원시적"이지 않다. 모든 객체는 null 값으로 부터 파생되며 따라서 typeof 연산자는 아래의 코드에서 object를 반환한다.

+ +
typeof null === 'object' // true
+ + -- cgit v1.2.3-54-g00ecf