--- title: undefined slug: Glossary/undefined tags: - CodingScripting - Glossary - JavaScript translation_of: Glossary/undefined ---

undefined는 {{Glossary("primitive", "원시값")}}으로, 선언한 후 값을 할당하지 않은 {{glossary("variable", "변수")}} 혹은 값이 주어지지 않은 {{Glossary("argument","인수")}}에 자동으로 할당됩니다.

예제

var x; // 값을 할당하지 않고 변수 선언

console.log("x's value is", x) // "x's value is undefined" 출력

더 알아보기

기술 참고서