[TypeScript] Object, Interface, Class
Object // const는 상수를 지정할 때 사용하지만 Object의 값은 수정할 수 있다. const student = { id : "123456", name : "Kent" }; // 아래 두 방법으로 Object의 값에 접근할 수 있다. student.id = "654321"; student["name"] = "Kevin" console.log(student); // 출력 : { id: '654321', name: 'Kevin' } console.log(student["id"]); // 출력 : 654321 console.log(student.name); // 출력 : Kevin Interface 객체(Object)의 구조를 나타내는 경우 interface Car { door : number; ..
2019. 9. 14. 20:01