- 출처 : http://whiteship.tistory.com/ -
=== 는 변수의 값과 타입이 모두 같은지 확인하는 연산자이다.
x=5
y="5"
x==y returns true
x===y returns false
y="5"
x==y returns true
x===y returns false
- 출처 : http://whiteship.tistory.com/ -
=== 는 변수의 값과 타입이 모두 같은지 확인하는 연산자이다.