console.log('1' == 1); // true
console.log(true == 1); // true
같은 타입이 아니므로 동등 연산자는 true를 숫자 타입으로 변환.
console.log(null == undefined); // true
연산자로 비교하면 두 값 모두 "nullish" 값으로 간주되어 동일 취급함.
console.log('1' === 1); // false
console.log(true === 1); // false