특정 조건이 트루일 때 특정 결과값을 리턴하기 위함
NaN && 'dog' // NaN true && 'dog' //dog A && B // A 가 false 이면 B 를 리턴하지 않고 A를리턴한다. // 특정 조건이 트루일 때 특정 결과값을 리턴하기 위함