const a = 123;
const b: boolean = ['a', 'b'].length >= 100;
const c: [number, string] = ['apple', 1300];
const d: string = 300 ? '크다' : '작다';
const e = function sayHello(): any {
console.log('hello');
};
a
b
c
d
e
<aside> 💡 정답: 3 tuple에 명시된 타입을 순서 대로 사용할 수 있다.
</aside>
a
변수에 상속된 유형은 무엇인지 고르세요.const a = ['1', '2', '3'];
any[]
tuple
string
string[]
enum