이 개념에 대해 알고 있으면 정말 유용해서 정리한다. 초급개발자인 나도 여전히 헷갈리니깐 정리해두는 것! Truthy: true 같은거! Falsy: False 같은거! 아래 5가지는 꼭 외우기 1. undefined 2. null 3. 0 4. '' 5. Nan 예를 들어, 아래와 같은 코드가 있을 경우 undefined는 걸러낼 수 있지만, null이 전달 될 경우 ? function print(person) { if(person === undefined){ return; } console.log(person.name); } const person = null; print(); 그럼 아래와 같이 조건을 또 추가해줘야한다. function print(person) { if(person === undef..