is 키워드는 타입을 비교할 때 사용합니다.
is
int age = 28; print(age is int); // true print(age is! int); // false print(age is! String); // true