Appearance
대상이 null 또는 undefined인지 쉽게 찾아주는 유틸 함수
null
undefined
unknown
isNil(null); // true isNil(undefined); // true isNil('test'); // false