웹 개발/Typescript

function in interface

투자유v 2022. 1. 4. 01:01
728x90
interface Person {
  name: string;
  age?: number;
  hello(): void;
}

const p1: Person = {
  name: "hyun",
  hello: function (): void {
    console.log(`Hi, my name is ${this.name}`);
  },
};

const p2: Person = {
  name: "kim",
  hello(): void {
    console.log(`Hi, my name is ${this.name}`);
  },
};