TypeScript(function in interface)

Dev_Go·2022년 7월 11일
0

TypeScript Essentials

목록 보기
17/24
post-thumbnail

function in interface


interface 안에서 함수를 정의하고 함수를 만들어서 할당한 후 사용

interface Person4 {
  name: string;
  age: number;
  hello(): void;
}

const p41: Person4 = {
  name: "Winnie",
  age: 20,
  hello: function (): void {
    console.log(`안녕하세요! ${this.name} 입니다.`);
  },
};
const p42: Person4 = {
  name: "Winnie",
  age: 20,
  hello(): void {
    console.log(`안녕하세요! ${this.name} 입니다.`);
  },
};

p41.hello();
p42.hello();
profile
프론트엔드 4년차

0개의 댓글