This page was translated from English by the community.Learn more and join the MDN Web Docs community.
null
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
null 은 JavaScript의원시 값 중 하나로, 어떤 값이 의도적으로 비어있음을 표현하며 불리언 연산에서는거짓으로 취급합니다.
In this article
시도해 보기
function getVowels(str) { const m = str.match(/[aeiou]/gi); if (m === null) { return 0; } return m.length;}console.log(getVowels("sky"));// Expected output: 0구문
js
null;설명
null은 리터럴로서null이라 씁니다.null은undefined과 같이 글로벌 객체의 속성에 대한 식별자가 아닙니다. 대신null은 식별되지 않은 것을 표현합니다. 즉, 변수가 아무런 객체를 가리키지 않음을 표현합니다. API에서는null을 종종 관련된 객체가 존재하지 않을 때 그 객체 대신 사용합니다.
js
// 정의되지 않고 초기화된 적도 없는 foofoo; //ReferenceError: foo is not defined// 존재하지만 값이나 자료형이 존재하지 않는 foovar foo = null;foo; //nullnull과undefined의 차이
null 또는undefined를 검사할 때,동등 연산자(==)와 일치 연산자(===)의 차이를 주의하세요. 동등 연산자는 자료형 변환을 수행합니다.
js
typeof null; // "object" (하위호환 유지를 위해 "null"이 아님)typeof undefined; // "undefined"null === undefined; // falsenull == undefined; // truenull === null; // truenull == null; // true!null; // trueisNaN(1 + null); // falseisNaN(1 + undefined); // true명세
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-null-value> |