! 공식문서를 참고해서 개념을 다시 한번 확인해주세요 ! =과 ===은 조건식에서 사용 1. == -값만 비교 ex. 1 == '1' => true undefined == null => true 2. === -값과 타입을 비교 ex. 1 === '1' => false, numer 타입과 string 타입으로 타입이 달라서 undefined === null => false, undefined 타입과 object 타입으로 타입이 달라서 Resourses https://im-developer.tistory.com/38