Notice
Recent Posts
Recent Comments
Link
목록프로그래밍 (1)
배고픈 희동이 IT 스토리

javascript에서 헷갈려하는 null과 undefined의 차이점과 undeclared 변수가 무엇인지, NaN은 무엇인지에 대해 알아보자. 참고자료1 참고자료2 [목차] undefined 변수 undeclared 변수 null이란 undefined와 null의 차이 NaN이란 isNaN() 함수 undefined == null Undefined (미정의 변수) 접근 가능한 스코프에 변수가 선언되었으나 현재 아무런 값도 할당되지 않은 상태. var test; console.log(test); //undefined console.log(typeof test); //undefined 타입이 정의되지 않았음을 알 수 있다. Undeclared (미선언 변수) 접근 가능한 스코프에 변수 선언조차 되어있지 ..
프로그래밍/JavaScript
2019. 8. 3. 16:03