undefined

·DEV/JavaScript
null과 undefined // null과 undefined // 서로 다른 자료형 // undefined : 처음부터 아무것도 없었다는 것을 표현 let aaa; console.log(aaa); // undefined // null : '값이없음'을 의도적으로 표현 aaa = null; console.log(aaa); 연습 1 // 연습 1 let x; console.log(x); // 1 let y = x; x = null; console.log(y); // 2 console.log(x); // 3 x = y; console.log(x); // 4 // 1 : undefined // 아무런 값도 할당하지 않았기때문에 undefined // 2 : undefined // 변수 y를 선언함과 동시에 변..
devvnn
'undefined' 태그의 글 목록