자바스크립트 동등 연산자 == 와 일치 연산자 ===
📣 Equality vs Identity 자바스크립트에서 두 개의 피연산자가 동일한지 확인하는 방법은 두 가지가 있다. - 동등 연산자 (equality operator) == - 일치 연산자 (identity operator) === 두 연산자의 차이점은, 동등 연산자는 타입을 변환해서 검사하고 일치 연산자는 그렇지 않다는 것이다. const stringFive = '5'; const numberFive = 5; // == loose equality, with type conversion console.log(stringFive == numberFive); //true console.log(stringFive != numberFive); //false // === strict equality, no t..
IT/Javascript
2021. 1. 18. 12:08