null vs. undefined 및 == 및 ===의 차이점에 대한 JavaScript 검사 그것이 있다면 어떻게 변수를 확인합니까 null또는 undefined과의 차이 무엇 null하고 undefined? ==과 의 차이점은 무엇입니까 ===(Google에서 "==="를 검색하기 어렵습니다)? 변수가 null또는 undefined... 인지 어떻게 확인합니까? 변수는 null다음과 같습니다. if (a === null) // or if (a == null) // but see note below ...하지만 후자도 마찬가지 a입니다 undefined. 그것은 undefined: if (typeof a === "undefined") // or if (a === undefined) // or if (a..