class index signatures

YOUNGJOO-YOON·2022년 1월 1일
0

typeScript

목록 보기
47/65
class Idx {
  val: number[];
  dic: { [s: string]: string };
  constructor() {
    this.val = [5, 4, 3, 2, 1];
    this.dic = { cow: 'cow', lamb: 'lamb' };
  }
  check(s: number) {
    return this.val[s];
  }
  dics(s: string): string {
    return this.dic[s];
  }
}
export const d: Idx = new Idx();
console.log(d.check(0));
console.log(d.dics('cow'));
profile
이 블로그의 글은 제 생각을 정리한 글과 인터넷 어딘가에서 배운 것을 정리한 글입니다. 출처는 되도록 남기도록 하겠습니다. 수정 및 건의 오류 등이 있으면 언제든지 댓글 부탁드립니다.

0개의 댓글