JS 객체 지향 프로그래밍 : 객체와 클래스
TS에서 class를 사용하는 방법은 아래 포스트를 참고합시다. (https://darrengwon.tistory.com/527?category=867626) - 간단한 배열과 객체의 반복문 주의할 점은, 반복문에서 member.name을 할 경우 undefined을 출력하므로 member[name]으로 입력해줘야 함 // 배열 const a = [1, 3, 57, 8]; let i = 0; while (i < a.length) { console.log(i); i++; } // 객체 const member = { manager: "deluze", client: "jijek" }; for (let name in member) { console.log(name, member[name]); } - this t..