비교 연산자
원시데이터에서 동등연산자와 일치연산자 차이
console.log(5 == '5') // true , TS Error
console.log(5 === '5') // false , TS Errorconsole.log('' == '0') // false
console.log(0 == '') // true
console.log('' === '0') // false
console.log(0 === '') // false참조데이터에서 동등연산자와 일치연산자 차이
console.log({ a: 123 } == { a: 123 }) // False
console.log({ a: 123 } === { a: 123 }) // FalseLast updated