깜놀하는 해므찌로

typescript this 활용 예시 본문

IT

typescript this 활용 예시

agnusdei1207 2023. 5. 20. 12:08
반응형
SMALL
interface User{
    name : string;
}

let sam:User = {
    name:"Sam"
}

/** this 가 가장 먼저 나와야 함 */
function showName(this:User, age:number, gender:"m"|"f"){
    console.log(this.name);
}

let a = showName.bind(sam);
a(30, "m");
반응형
LIST