null과 undefined

Jiwontwopunch·2021년 12월 7일
0

독학

목록 보기
7/102
post-thumbnail
console.log(null == undefined) // true
console.log(null === undefined) // false

null 과 undefined는 서로 동등하지만, 일치하진 않음.

getElementById 메소드를 통해 HTML 문서에 존재하지 않는 id 값으로 태그를 선택하면 그 값은 null

getElementsByClassName 메소드를 통해 HTML 문서에 존재하지 않는 class 값으로 태그를 선택하면 그 값은 undefined

0개의 댓글