클래스클래스 매서드와 속성class FieldTrip{ // 클래스의 속성을 읽거나 쓰려면 클래에 명시적으로 선언해야한다. destination:string constructor(destination:string){ // 타입스크립트는 생성자 내의 할당에 대해서 그 멤버가 클래스에 존재하는 멤버인지 추론하려하지 않는다. this.destination = destination; console.log(`My destination : ${this.destination}`) } arrive(start:string){ console.log(`I'm from ${start}`) return start }}const Me = new F..