웹표준,웹접근성(html, html5, css, css3, javascript, jQuery, jQueryMobile, snecha, senchaTouch, php, mobileWebApp)
undefined 자료형 본문
Undefined
- 존재하지 않는 것을 표현하는 자료형
- 변수로 선언하지 않은 것 또는 변수 선언은 했지만 초기화 하지 않았을때 undefined 자료형을 갖는다.
var a = 1, // a라는 변수에 1을 담는다.
b; // b라는 변수 선언만 한상태, 값을 주지 않아 초기화 되지 않은 상태
console.log(typeof(a)); // a변수의 자료형 확인
console.log(typeof(b)); // b변수의 자료형 확인
console.log(typeof(c)); // c변수의 자료형 확인
'javascript > Tutorial' 카테고리의 다른 글
조건문 if(), switch, 삼항연산자 (0) | 2013.11.12 |
---|---|
숫자와 문자열 형 변환, Number(), Strimg(), Boolean() (0) | 2013.11.04 |
array(배열) (1) | 2013.11.04 |
jascript prompt(입력), confirm(확인) (0) | 2013.10.30 |
javascript 자료형 검사 typeof() (0) | 2013.10.30 |