목차
접기
728x90
반응형
// 연습
interface ConsoleFunction {
(a: string, b: number): string
}
let test:ConsoleFunction = function(a: string, b: number ): string {
return '제 이름은 ' + a + '이고, 나이는 ' + b + ' 입니다.';
}
let test1:string = test('해리', 30);
console.log(test1);
728x90
반응형
LIST
'IT 유용한 정보' 카테고리의 다른 글
[ typescript ] 딕셔너리 패턴 (0) | 2021.01.31 |
---|---|
[ typescript ] 인덱싱(interface) (0) | 2021.01.31 |
[ typescript ] interface 활용 기초. (0) | 2021.01.31 |
[ typescript ] interface 정의 (0) | 2021.01.31 |
[ typescript ] Object 타입의 속성을 모두 명시하여 중복 사용하지 않고 간단하게 사용할 수 있는 방법. (0) | 2021.01.31 |