The goals 💪🏻What are Objects ✌🏻Objects in JavaScript 👍🏻Adding a Method to Objects 객체 & 원시 값 객체는 참조 값이라는 점은 이미 배우셨습니다. 아직 명확하지 않을 수도 있지만, 객체가 원시 값으로 구성된다는 점을 이해하는 것이 중요합니다. 다음은 예시입니다. const complexPerson = { name: 'Max', hobbies: ['Sports', 'Cooking'], address: { street: 'Some Street 5', stateId: 5, country: 'Germany', phone: { number: 12 345 678 9, isMobile: true } }, }; complexPerson 에 여러 개의 중첩..