Kotlin에서 null 체크는 어떻게 할 지 궁금해졌다.
아마.. if(variable === null) 이 맞는것이겠지..?
그래서 찾아 보니.. if(variable == null) 을 쓰면 자동으로 if(variable === null) 변환해준다고 한다.
Note that there's no point in optimizing your code when comparing to null explicitly: a == null will be automatically translated to a === null.
결론, if(variable == null) 과 if(variable === null) 둘 다 null 체크하는 것이다.