웹표준,웹접근성(html, html5, css, css3, javascript, jQuery, jQueryMobile, snecha, senchaTouch, php, mobileWebApp)

undefined 자료형 본문

javascript/Tutorial

undefined 자료형

jokack01 2013. 11. 4. 11:46

Undefined 

- 존재하지 않는 것을 표현하는 자료형

- 변수로 선언하지 않은 것 또는 변수 선언은 했지만 초기화 하지 않았을때 undefined 자료형을 갖는다.


var a = 1,  // a라는 변수에 1을 담는다.

    b; // b라는 변수 선언만 한상태, 값을 주지 않아 초기화 되지 않은 상태


console.log(typeof(a));  // a변수의 자료형 확인

console.log(typeof(b));  // b변수의 자료형 확인

console.log(typeof(c));  // c변수의 자료형 확인