JavaScript | 객체와 배열이 섞인 복잡한 객체에서의 접근방법

Lee, Chankyu·2021년 9월 3일
0
post-thumbnail
post-custom-banner

📝Study Keyword

✅ 예시

let myself = {
  name: 'Chankyu Lee',
  location: {
    country: 'South Korea',
    city: 'Bundang'},
  age: 20,
  dogs: ['개', '강아지'],
  Cars: [{
  	Hyundai : 'Sonata'
	}, {
  	Kia : 'K5'
	}]
  };
  • 객체 형태의 property에서 value 값('South Korea') 출력하기
console.log(myself.location.country); // 'South Korea'
console.log(myself['location']['country']); // 'South Korea'
  • 배열 형태의 property에서 value 값('강아지') 출력하기
console.log(myself.dogs[1]); // '강아지'
console.log(myself['dogs'][1]); // '강아지'
  • 배열과 객체가 섞여있는 property에서 value 값('K5') 출력하기
console.log(myself.Cars[1].Kia); // 'K5
console.log(myself['Cars'][1]['Kia']); // 'K5'

profile
Backend Developer - "Growth itself contains the germ of happiness"
post-custom-banner

0개의 댓글